We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a03b8 commit 01fc302Copy full SHA for 01fc302
1 file changed
README.md
@@ -98,13 +98,13 @@ from percentify import r_squared
98
99
r_squared(y_true, y_pred) # → 87.3
100
```
101
-> _Underlying library:_ `sklearn.metrics.r2_score`
+> _Similar Concepts:_ `sklearn.metrics.r2_score`
102
103
### `pca_variance`: PCA Variance Breakdown
104
Columns are standardized by default, so a feature measured in large units (e.g.
105
dollars) can't dominate the result just because of its scale. Pass
106
`standardize=False` for covariance-based PCA on the raw values.
107
-> _Underlying library:_ `sklearn.decomposition.PCA` (`.explained_variance_ratio_`)
+> _Similar Concept:_ `sklearn.decomposition.PCA` (`.explained_variance_ratio_`)
108
```python
109
from percentify import pca_variance
110
0 commit comments