@@ -46,7 +46,7 @@ change(df) # every numeric column at once
4646
4747### ` vif ` : Variance Inflation Factor (Multicollinearity)
4848The 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
5151from 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)
8686Stop rewriting the IQR bounds from scratch.
87- > _ Underlying library :_ ` scipy.stats.iqr `
87+ > _ Similar Concept :_ ` scipy.stats.iqr `
8888``` python
8989from percentify import outliers
9090
@@ -98,13 +98,13 @@ from percentify import r_squared
9898
9999r_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
104104Columns are standardized by default, so a feature measured in large units (e.g.
105105dollars) 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
109109from percentify import pca_variance
110110
0 commit comments