Skip to content

Commit f7c9f24

Browse files
author
Fabian Pedregosa
committed
Remove failing docstring for release ...
1 parent fcc6988 commit f7c9f24

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

scikits/learn/pls.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -665,17 +665,6 @@ class CCA(_PLS):
665665
The residual matrix of Y (Yk+1) block is obtained by deflation on the
666666
current Y score.
667667
668-
Examples
669-
--------
670-
>>> from scikits.learn.pls import PLSCanonical, PLSRegression, CCA
671-
>>> X = [[0., 0., 1.], [1.,0.,0.], [2.,2.,2.], [3.,5.,4.]]
672-
>>> Y = [[0.1, -0.2], [0.9, 1.1], [6.2, 5.9], [11.9, 12.3]]
673-
>>> cca = CCA()
674-
>>> cca.fit(X, Y, n_components=1)
675-
CCA(scale=True, algorithm='nipals', max_iter=500, n_components=1, tol=1e-06,
676-
copy=True)
677-
>>> X_c, Y_c = cca.transform(X, Y)
678-
679668
References
680669
----------
681670
Jacob A. Wegelin. A survey of Partial Least Squares (PLS) methods, with

0 commit comments

Comments
 (0)