Pandas - Sets: Set-oriented Operations in Pandas
Project description
Pandas Sets: Set-oriented Operations in Pandas
If you store standard Python sets or frozensets in your Series or DataFrame objects, you'll find this useful.
The pandas_sets package adds a .set accessor to any pandas Series object;
it's like .dt for datetime or .str for string, but for set.
It exposes all public methods available in the standard set.
Installation
pip install pandas-sets
Just import the pandas_sets package and it will register a .set accessor to any Series object.
import pandas_sets
Examples
import pandas_sets
import pandas as pd
df = pd.DataFrame({'post': [1, 2, 3, 4],
'tags': [{'python', 'pandas'}, {'philosophy', 'strategy'}, {'scikit-learn'}, {'pandas'}]
})
pandas_posts = df[df.tags.set.contains('pandas')]
pandas_posts.tags.set.add('data')
pandas_posts.tags.set.update({'data', 'analysis'})
pandas_posts.tags.set.len()
Notes
- The implementation is primitive for now. It's based heavily on the pandas' core
StringMethodsimplementation. - The public API has been tested for most expected scenarios.
- The API will need to be extended to handle
NAvalues appropriately.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pandas-sets-0.2.1.tar.gz.
File metadata
- Download URL: pandas-sets-0.2.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00beeaa5c9d584e45b4bf8631e4e0d95df53391174b43e6d9ddfbeff56220f29
|
|
| MD5 |
430c979fe285a6faaab64f8469aea304
|
|
| BLAKE2b-256 |
9a08494999359d150cb0df421c9afe656b24d2ba85c1f0d756d7ee5b73477902
|
File details
Details for the file pandas_sets-0.2.1-py3-none-any.whl.
File metadata
- Download URL: pandas_sets-0.2.1-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dc348525352326c9f5f93bd46b3df39e3073b1ec55a085dc67216c4d45a7dc0
|
|
| MD5 |
6ed8742ae0e0df6beb27e116713c1093
|
|
| BLAKE2b-256 |
ce0ec8c49b34f2cc4e429e84dd717f6475f350dca2254c005cd5e411593cab68
|