Skip to content

Commit 01fc302

Browse files
authored
Update README.md
1 parent d4a03b8 commit 01fc302

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ from percentify import r_squared
9898

9999
r_squared(y_true, y_pred) # → 87.3
100100
```
101-
> _Underlying library:_ `sklearn.metrics.r2_score`
101+
> _Similar Concepts:_ `sklearn.metrics.r2_score`
102102
103103
### `pca_variance`: PCA Variance Breakdown
104104
Columns are standardized by default, so a feature measured in large units (e.g.
105105
dollars) can't dominate the result just because of its scale. Pass
106106
`standardize=False` for covariance-based PCA on the raw values.
107-
> _Underlying library:_ `sklearn.decomposition.PCA` (`.explained_variance_ratio_`)
107+
> _Similar Concept:_ `sklearn.decomposition.PCA` (`.explained_variance_ratio_`)
108108
```python
109109
from percentify import pca_variance
110110

0 commit comments

Comments
 (0)