Easy pipelines for pandas.
Project description
Easy pipelines for pandas.
>>> df = pd.DataFrame(
data=[[4, 165, 'USA'], [2, 180, 'UK'], [2, 170, 'Greece']],
index=['Dana', 'Jack', 'Nick'],
columns=['Medals', 'Height', 'Born']
)
>>> pipeline = pdp.Coldrop('Medals').Binarize('Born')
>>> pipline(df)
Height Born_UK Born_USA
Dana 165 0 1
Jack 180 1 0
Nick 170 0 0
1 Installation
Install pdpipe with:
pip install pdpipe
Some stages require scikit-learn; they will simply not be loaded if scikit-learn is not found on the system, and pdpipe will issue a warning.
2 Use
2.1 Creating Pipline Stages
Create stages with the following syntax:
import pdpipde as pdp
drop_name = pdp.ColDrop("Name")
By default, pipeline stages raise an exception if a DataFrame not meeting their precondition is piped through. This behaviour can be set per-stage by assigning exraise with a bool in a constructor call:
drop_name = pdp.ColDrop("Name", exraise=False)
2.2 Creating Piplines
Pipelines can be created by supplying a list of pipeline stages:
pipeline = pdp.Pipeline([pdp.ColDrop("Name"), pdp.Binarize("Label")])
Alternatively, you can add pipeline stages together:
pipeline = pdp.ColDrop("Name") + pdp.Binarize("Label")
Or even by adding pipelines together or pipelines to pipeline stages:
pipeline = pdp.ColDrop("Name") + pdp.Binarize("Label")
pipeline += pdp.MapColVals("Job", {"Part": True, "Full":True, "No": False})
pipeline += pdp.Pipeline([pdp.ColRename({"Job": "Employed"})])
Pipline stages can also be chained to other stages to create pipelines:
pipeline = pdp.ColDrop("Name").Binarize("Label").ValDrop([-1], "Children")
2.3 Applying Pipelines Stages
You can apply a pipeline stage to a DataFrame using its apply method:
res_df = pdp.ColDrop("Name").apply(df)
Pipeline stages are also callables, making the following syntax equivalent:
drop_name = pdp.ColDrop("Name")
res_df = drop_name(df)
The initialized exception behaviour of a pipeline stage can be overriden on a per-application basis:
drop_name = pdp.ColDrop("Name", exraise=False)
res_df = drop_name(df, exraise=True)
2.4 Applying Pipelines
Pipelines are pipeline stages themselves, and can be applied to DataFrame using the same syntax, applying each of the stages making them up, in order:
pipeline = pdp.ColDrop("Name") + pdp.Binarize("Label")
res_df = pipeline(df)
Assigning the exraise paramter to a pipeline apply call with a bool set or unsets exception raising on failed preconditions for all contained stages:
pipeline = pdp.ColDrop("Name") + pdp.Binarize("Label")
res_df = pipeline.apply(df, exraise=True)
3 Pipeline Stages
3.1 Basic Stages
ColDrop - Drop columns by name.
ValDrop - Drop rows by by their value in specific or all columns.
ValKeep - Keep rows by by their value in specific or all columns.
ColRename - Rename columns.
Bin - Convert a continous valued column to categoric data using binning.
Binarize - Convert a categorical column to the several binary columns corresponding to it.
MapColVals - Convert column values using a mapping.
3.2 Scikit-learn-dependent Stages
Encode - Encode a categorical column to corresponding number values.
4 Credits
Created by Shay Palachy (shay.palachy@gmail.com).
Project details
Release history Release notifications | RSS feed
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 pdpipe-0.0.2.tar.gz
.
File metadata
- Download URL: pdpipe-0.0.2.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05caa59c03267f84dc76d4dbf4eae706056eb052e67822df2360ec82583853a7 |
|
MD5 | ac35089648ee28bcb4cc3c93efe2da87 |
|
BLAKE2b-256 | 8bea6b3625737d733148860249cee556146d715feb1eff409b2cd6ec911a9dde |