Data science utilities
Project description
datasci
Install from PyPI:
pip install datasci
Install in development mode:
pip install -e .
Features
Jupyter notebook initialization
%run -m datasci.notebook.init
Pandas helpers
import pandas as pd
df = pd.DataFrame(...)
from datasci.pandas import drop_na_columns, drop_uninformative_columns
df_without_na = drop_na_columns(df)
df_informative = drop_uninformative_columns(df)
# or, all-together:
df = pd.DataFrame(...).pipe(drop_na_columns).pipe(drop_uninformative_columns)
Testing
python setup.py test
License
Copyright 2018–2020 Christopher Brown. MIT Licensed.
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
datasci-0.4.0.tar.gz
(6.5 kB
view hashes)
Built Distribution
Close
Hashes for datasci-0.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8faafc08ed08447858691b9dd176b079677f0f2b5ecc19766c9ee528ae1049cd |
|
MD5 | 94140dacfdd1b82e8ccd667491ecde70 |
|
BLAKE2b-256 | 23f0dcadfb26c224f42d264bb34e7f1881696a2841e23268d51730746f39d99c |