Guest User

Untitled

a guest
Aug 17th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. The determinant of the smoothed correlation was zero.
  2. This means the objective function is not defined.
  3. Chi square is based upon observed residuals.
  4. The determinant of the smoothed correlation was zero.
  5. This means the objective function is not defined for the null model either.
  6. The Chi square is thus based upon observed correlations.
  7. In factor.stats, the correlation matrix is singular, an approximation is used
  8. Warning messages:
  9. 1: In cor.smooth(r) : Matrix was not positive definite, smoothing was done
  10. 2: In fa.stats(r = r, f = f, phi = phi, n.obs = n.obs, np.obs = np.obs, :
  11. In factor.stats, the correlation matrix is singular, and we could not calculate the beta weights for factor score estimates
  12. 3: In psych::principal(transposed_matrix, nfactors = 3) :
  13. The matrix is not positive semi-definite, scores found from Structure loadings
  14.  
  15. original_matrix = data.frame(replicate(6,sample(250:300,2404,rep=TRUE)))
  16. transposed_matrix = t(original_matrix)
  17. pca_temper = psych::principal(transposed_matrix, nfactors = 3)
Add Comment
Please, Sign In to add comment