Reparo is a python sci-kit learn inspired package for Missing Value Imputation.
Project description
reparo
Reparo is a python sci-kit learn inspired package for Missing Value Imputation. It contains a some feature transformers to eliminate Missing Values (NaNs) from your data for Machine Learning Algorithms.
This version of reparo has the next methods of missing value imputation:
- Cold-Deck Imputation (CDI).
- Hot-Deck Imputation (HotDeckImputation).
- Fuzzy-Rough Nearest Neighbor for Imputation (FRNNI).
- K-Nearest Neighbors Imputation (KNNI).
- Single Center Imputation from Multiple Chained Equation (SICE).
- Predictive Mean Matching (PMM).
- Multivariate Imputation by Chained Equation (MICE).
All these methods work like normal sklearn transformers. They have fit, transform and fit_transform functions implemented.
Additionally every reparo transformer has an apply function which allows to apply an transformation on a pandas Data Frame.
How to use reparo
To use a transformer from reparo you should just import the transformer from reparo in the following framework:
from reparo import <class name>
class names are written above in parantheses.
Next create a object of this algorithm (I will use k-Nearest Neighbors Imputation as an example).
method = KNNI()
Firstly you should fit the transformer, passing to it a feature matrix (X) and the target array (y). y argument is not really used (as it causes data leackage)
method.fit(X, y)
After you fit the model, you can use it for transforming new data, using the transform function. To transform function you should pass only the feature matrix (X).
X_transformed = method.transform(X)
Also you can fit and transform the data at the same time using the fit_transform function.
X_transformed = method.fit_transform(X)
Also you can apply a transformation directly on a pandas DataFrame, choosing the columns that you want to change.
new_df = method.apply(df, 'target', ['col1', 'col2'])
With <3 from Sigmoid. We are open for feedback. Please send your impression to papaluta.vasile@isa.utm.md
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file reparo-0.0.3.tar.gz
.
File metadata
- Download URL: reparo-0.0.3.tar.gz
- Upload date:
- Size: 74.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.40.0 importlib-metadata/0.23 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b7a16354a16eeeacb88ca156f5030c34512932ec1a26ae5744c410a4571213d |
|
MD5 | 7387a9b24ef6d6585f9f47e1ebf0455a |
|
BLAKE2b-256 | 0f070e2dee4a3a63f726666a1cc9b0b74383156ba66895a2df3aecfc6f9b49db |
File details
Details for the file reparo-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: reparo-0.0.3-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.40.0 importlib-metadata/0.23 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 143578abb40318cf684426e8247b8579e313b000a1afd63aac9509c7cd28c236 |
|
MD5 | 42bdfb16a570b7eea607e88a06cf5956 |
|
BLAKE2b-256 | b33fdda4897d49cc242042133e9a67110ca49b34c728909ffa6abaf73ed2ad86 |