Skip to content

Commit 56c1f9b

Browse files
authored
Merge pull request #9 from jediknight6/main
Merge pull request #1 from data-centt/main
2 parents 16ffdda + 01fc302 commit 56c1f9b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ change(df) # every numeric column at once
4646

4747
### `vif`: Variance Inflation Factor (Multicollinearity)
4848
The classic multicollinearity check, without the six-line loop.
49-
> _Underlying library:_ `statsmodels.stats.outliers_influence.variance_inflation_factor`
49+
> _Similar Concept:_ `statsmodels.stats.outliers_influence.variance_inflation_factor`
5050
```python
5151
from percentify import vif
5252

@@ -84,7 +84,7 @@ cv(df) # → DataFrame of every numeric column, most variable first
8484

8585
### `outliers`: Percentage of Outliers (IQR Method)
8686
Stop rewriting the IQR bounds from scratch.
87-
> _Underlying library:_ `scipy.stats.iqr`
87+
> _Similar Concept:_ `scipy.stats.iqr`
8888
```python
8989
from percentify import outliers
9090

@@ -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)