From d4a03b825a86259005594ad98542692bfb4c4a0d Mon Sep 17 00:00:00 2001 From: jediknight6 <63808234+jediknight6@users.noreply.github.com> Date: Wed, 8 Jul 2026 14:24:18 +0100 Subject: [PATCH 1/2] Update README.md The package is built on pandas and numpy dependencies, therefore its similar concept to statsmodel and not the 'underlying model' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8bf3fa0..ef9b49a 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ change(df) # every numeric column at once ### `vif`: Variance Inflation Factor (Multicollinearity) The classic multicollinearity check, without the six-line loop. -> _Underlying library:_ `statsmodels.stats.outliers_influence.variance_inflation_factor` +> _Similar Concept:_ `statsmodels.stats.outliers_influence.variance_inflation_factor` ```python from percentify import vif @@ -84,7 +84,7 @@ cv(df) # → DataFrame of every numeric column, most variable first ### `outliers`: Percentage of Outliers (IQR Method) Stop rewriting the IQR bounds from scratch. -> _Underlying library:_ `scipy.stats.iqr` +> _Similar Concept:_ `scipy.stats.iqr` ```python from percentify import outliers From 01fc302f8d62973e74950da2ada81936375047e2 Mon Sep 17 00:00:00 2001 From: jediknight6 <63808234+jediknight6@users.noreply.github.com> Date: Wed, 8 Jul 2026 14:29:22 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef9b49a..e11a4b2 100644 --- a/README.md +++ b/README.md @@ -98,13 +98,13 @@ from percentify import r_squared r_squared(y_true, y_pred) # → 87.3 ``` -> _Underlying library:_ `sklearn.metrics.r2_score` +> _Similar Concepts:_ `sklearn.metrics.r2_score` ### `pca_variance`: PCA Variance Breakdown Columns are standardized by default, so a feature measured in large units (e.g. dollars) can't dominate the result just because of its scale. Pass `standardize=False` for covariance-based PCA on the raw values. -> _Underlying library:_ `sklearn.decomposition.PCA` (`.explained_variance_ratio_`) +> _Similar Concept:_ `sklearn.decomposition.PCA` (`.explained_variance_ratio_`) ```python from percentify import pca_variance