Scikit learn SKLearn FastICA-如何获取装载量?

Scikit learn SKLearn FastICA-如何获取装载量?,scikit-learn,pca,Scikit Learn,Pca,对于PCA荷载,通过以下公式计算: loadings = pca.components_.T * np.sqrt(pca.explained_variance_) 对于ICA,没有.explained\u variance\u数组,所以它只是?: ica.components_[]

对于PCA荷载,通过以下公式计算:

loadings = pca.components_.T * np.sqrt(pca.explained_variance_)
对于ICA,没有.explained\u variance\u数组,所以它只是?:

ica.components_[]