After I fit some data with PCA:
estimator = PCA(n_components)
estimator.fit(mydat)
can I obtain eigenvalues of covariance matrix, which were computed inside (and which IMO are equal to variances of projected data)?
After I fit some data with PCA:
estimator = PCA(n_components)
estimator.fit(mydat)
can I obtain eigenvalues of covariance matrix, which were computed inside (and which IMO are equal to variances of projected data)?
Copyright © 2021 Jogjafile Inc.
The eigenvalues should be in:
If you compare it with another software, do not forget to standardize the data first:
Then you should have results close to what R would give you.