File tree 2 files changed +6
-7
lines changed
sklearn/cross_decomposition 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 22
22
"MultiTaskLassoCV" ,
23
23
"OrthogonalMatchingPursuit" ,
24
24
"OrthogonalMatchingPursuitCV" ,
25
- "PLSCanonical" ,
26
25
"PLSRegression" ,
27
26
"PLSSVD" ,
28
27
"PassiveAggressiveClassifier" ,
Original file line number Diff line number Diff line change @@ -680,7 +680,7 @@ class PLSCanonical(_PLS):
680
680
will compute the whole SVD.
681
681
682
682
max_iter : int, default=500
683
- the maximum number of iterations of the power method when
683
+ The maximum number of iterations of the power method when
684
684
`algorithm='nipals'`. Ignored otherwise.
685
685
686
686
tol : float, default=1e-06
@@ -748,6 +748,11 @@ class PLSCanonical(_PLS):
748
748
749
749
.. versionadded:: 1.0
750
750
751
+ See Also
752
+ --------
753
+ CCA : Canonical Correlation Analysis.
754
+ PLSSVD : Partial Least Square SVD.
755
+
751
756
Examples
752
757
--------
753
758
>>> from sklearn.cross_decomposition import PLSCanonical
@@ -757,11 +762,6 @@ class PLSCanonical(_PLS):
757
762
>>> plsca.fit(X, Y)
758
763
PLSCanonical()
759
764
>>> X_c, Y_c = plsca.transform(X, Y)
760
-
761
- See Also
762
- --------
763
- CCA
764
- PLSSVD
765
765
"""
766
766
767
767
# This implementation provides the same results that the "plspm" package
You can’t perform that action at this time.
0 commit comments