标签: scikit-learn pca
对于PCA,加载量的计算方法如下:
loadings = pca.components_.T * np.sqrt(pca.explained_variance_)
对于ICA,没有.explained_variance_数组,所以它只是?:
ica.components_[]