本文简要介绍python语言中 sklearn.cross_decomposition.CCA
的用法。
用法:
class sklearn.cross_decomposition.CCA(n_components=2, *, scale=True, max_iter=500, tol=1e-06, copy=True)
典型相关分析,也称为“Mode B” PLS。
在用户指南中阅读更多信息。
- n_components:整数,默认=2
要保留的组件数。应该在
[1, min(n_samples, n_features, n_targets)]
中。- scale:布尔,默认=真
是否缩放
X
和Y
。- max_iter:整数,默认=500
幂法的最大迭代次数。
- tol:浮点数,默认=1e-06
幂法中用作收敛标准的容差:只要
u_i - u_{i-1}
的平方范数小于tol
,算法就会停止,其中u
对应于左奇异向量。- copy:布尔,默认=真
是否在应用居中和可能缩放之前复制
X
和Y
以适应。如果为 False,这些操作将在原地完成,同时修改两个数组。
- x_weights_:ndarray 形状(n_features,n_components)
每次迭代的交叉协方差矩阵的左奇异向量。
- y_weights_:ndarray 形状(n_targets,n_components)
每次迭代的交叉协方差矩阵的右奇异向量。
- x_loadings_:ndarray 形状(n_features,n_components)
X
的负载。- y_loadings_:ndarray 形状(n_targets,n_components)
Y
的负载。x_scores_
ndarray 形状(n_samples,n_components)属性
x_scores_
在版本 0.24 中已弃用。y_scores_
ndarray 形状(n_samples,n_components)属性
y_scores_
在版本 0.24 中已弃用。- x_rotations_:ndarray 形状(n_features,n_components)
用于变换
X
的投影矩阵。- y_rotations_:ndarray 形状(n_features,n_components)
用于变换
Y
的投影矩阵。- coef_:ndarray 形状(n_features,n_targets)
线性模型的系数,使得
Y
近似为Y = X @ coef_
。- n_iter_:形状列表(n_components,)
每个组件的幂方法的迭代次数。
- n_features_in_:int
拟合期间看到的特征数。
- feature_names_in_:ndarray 形状(
n_features_in_
,) 拟合期间看到的特征名称。仅当
X
具有全为字符串的函数名称时才定义。
参数:
属性:
例子:
>>> from sklearn.cross_decomposition import CCA >>> X = [[0., 0., 1.], [1.,0.,0.], [2.,2.,2.], [3.,5.,4.]] >>> Y = [[0.1, -0.2], [0.9, 1.1], [6.2, 5.9], [11.9, 12.3]] >>> cca = CCA(n_components=1) >>> cca.fit(X, Y) CCA(n_components=1) >>> X_c, Y_c = cca.transform(X, Y)
相关用法
- Python sklearn CalibrationDisplay.from_predictions用法及代码示例
- Python sklearn ConfusionMatrixDisplay.from_predictions用法及代码示例
- Python sklearn ClassifierChain用法及代码示例
- Python sklearn ComplementNB用法及代码示例
- Python sklearn CountVectorizer用法及代码示例
- Python sklearn CategoricalNB用法及代码示例
- Python sklearn CalibrationDisplay.from_estimator用法及代码示例
- Python sklearn ConfusionMatrixDisplay用法及代码示例
- Python sklearn CalibrationDisplay用法及代码示例
- Python sklearn CompoundKernel用法及代码示例
- Python sklearn ConstantKernel用法及代码示例
- Python sklearn ConfusionMatrixDisplay.from_estimator用法及代码示例
- Python sklearn CalibratedClassifierCV用法及代码示例
- Python sklearn ColumnTransformer用法及代码示例
- Python sklearn jaccard_score用法及代码示例
- Python sklearn WhiteKernel用法及代码示例
- Python sklearn VotingRegressor用法及代码示例
- Python sklearn gen_batches用法及代码示例
- Python sklearn ExpSineSquared用法及代码示例
- Python sklearn MDS用法及代码示例
- Python sklearn adjusted_rand_score用法及代码示例
- Python sklearn MLPClassifier用法及代码示例
- Python sklearn train_test_split用法及代码示例
- Python sklearn RandomTreesEmbedding用法及代码示例
- Python sklearn GradientBoostingRegressor用法及代码示例
注:本文由纯净天空筛选整理自scikit-learn.org大神的英文原创作品 sklearn.cross_decomposition.CCA。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。