Skip to content

Commit

Permalink
Fix errant parameter description
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgirardo authored and erdogant committed Mar 6, 2024
1 parent 53d8f8e commit 28e5443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pca/pca.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class pca:
Parameters
----------
n_components : [0..1] or [1..number of samples-1], (default: 0.95)
Number of PCs to be returned. When n_components is set >0, the specified number of PCs is returned.
Number of PCs to be returned. When n_components is set >=1, the specified number of PCs is returned.
When n_components is set between [0..1], the number of PCs is returned that covers at least this percentage of variance.
n_components=None : Return all PCs
n_components=0.95 : Return the number of PCs that cover at least 95% of variance.
Expand Down

0 comments on commit 28e5443

Please sign in to comment.