Package for ML preprocessing
Project description
Reeco ML Preprocessing Library
Module for preprocessor
Prerequisite
It is recommended to use Python 3.9 64bit since it is the environment that we developed the package.
Installation
Using pip:
$ pip install reeco_ml_preprocessing
or
$ py -m pip reeco_ml_preprocessing
Example
import numpy as np
from reeco_ml_preprocessing import PreprocessPipeline
from reeco_ml_preprocessing.time_series.ts_imputer import TimeSeriesImputer
pipeline = PreprocessPipeline(
[TimeSeriesImputer(method='linear')]
)
X = pd.DataFrame(
{
"a": 1, 2, 3, np.nan, 5
"b": 0, 1, np.nan, np.nan, 4
}
)
pipeline.fit_transform(X)
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
File details
Details for the file reeco_ml_preprocessing-0.1.3.tar.gz.
File metadata
- Download URL: reeco_ml_preprocessing-0.1.3.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
235e740cf206a0d0adee18708ac8c065a7095250a482c51277ca097839ee92a9
|
|
| MD5 |
58c1ba75499077617e6cea46bd45b650
|
|
| BLAKE2b-256 |
35213eb65820a2682879ba6afe634022a82da6c68c67d81dd0c1f3ebacaaa7dd
|