Skip to content

Commit a796d3d

Browse files
Fixed docstring example
1 parent e05225f commit a796d3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/dPCA/dPCA.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class dPCA(BaseEstimator):
8383
--------
8484
8585
>>> import numpy as np
86-
>>> from sklearn.decomposition import dPCA
86+
>>> from dPCA import dPCA
8787
>>> X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]])
8888
>>> dpca = dPCA(n_components=2)
8989
>>> dpca.fit(X)

0 commit comments

Comments
 (0)