Supercharged DataFrame indexing
Project description
pandas-select is a collection of DataFrame selectors that facilitates indexing and selecting data, fully compatible with pandas vanilla indexing.
The selector functions can choose variables based on their name, data type, arbitrary conditions, or any combination of these.
pandas-select is inspired by the excellent R library tidyselect.
Installation
pandas-select is a Python-only package hosted on PyPI. It can be installed via pip:
pip install pandas-select
Design goals
Fully compatible with the pandas.DataFrame [] operator and the pandas.DataFrame.loc accessor.
Emphasise readability and conciseness by cutting boilerplate:
# pandas-select
df[AllNumeric()]
# vanilla
df.select_dtypes("number").columns
# pandas-select
df[StartsWith("Type") | "Legendary"]
# vanilla
df.loc[:, df.columns.str.startswith("Type") | (df.columns == "Legendary")]
Ease the challenges of indexing with hierarchical index and offers an alternative to slicers when the labels cannot be listed manually.
# pandas-select
df_mi.loc[Contains("Jeff", axis="index", level="Name")]
# vanilla
df_mi.loc[df_mi.index.get_level_values("Name").str.contains("Jeff")]
Play well with machine learning applications.
Respect the columns order.
Allow deferred selection when the DataFrame’s columns are not known in advance, for example in automated machine learning applications.
Offer integration with sklearn.
from pandas_select import AnyOf, AllBool, AllNominal, AllNumeric, ColumnSelector from sklearn.compose import make_column_transformer from sklearn.preprocessing import OneHotEncoder, StandardScaler ct = make_column_transformer( (StandardScaler(), ColumnSelector(AllNumeric() & ~AnyOf("Generation"))), (OneHotEncoder(), ColumnSelector(AllNominal() | AllBool() | "Generation")), ) ct.fit_transform(df)
Project Information
pandas-select is released under the BS3 license, its documentation lives at Read the Docs, the code on GitHub, and the latest release on PyPI. It is tested on Python 3.6+.
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 pandas-select-0.2.0.tar.gz
.
File metadata
- Download URL: pandas-select-0.2.0.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/5.9.11-3-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb9efaacfb5aab5e34d98ea7f5b58c39490e40ab19f695ae3cafd032eece23b3 |
|
MD5 | 95e95d0317d5fd6e57186410a5d649c8 |
|
BLAKE2b-256 | 30d8aacebbe3b64ba989e2478fe765c6c9e40ab10278a3492cb4f38872b07c00 |
File details
Details for the file pandas_select-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: pandas_select-0.2.0-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/5.9.11-3-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0df51cba4e523b996e87cc5e3db7980dcf42b88f55cb58dc3191b333c30dd6cd |
|
MD5 | ec3c06cd2824363f39a39f18e40d9b7c |
|
BLAKE2b-256 | 8b02811b70ca079f286df091e5f828929317d5a4cbd42a00ca4a832537e09d66 |