A package to perform an advanced version of pandas' value_counts()
Project description
Welcome to advanced-value-counts
advanced-value-counts is a Python-package containing the AdvancedValueCounts
class that makes use of pandas' .value_counts()
, .groupby()
and seaborn to easily get a lot of info about the counts of a (categorical) column in a pandas DataFrame. The potential of this package is at its peak when wanting info of counts of a column after a grouping: df.groupby(groupby_col)[column].value_counts()
. Click here to read how to use AdvancedValueCounts
. Read this medium article or consult this notebook for an explanation on the added value of this package.
Git repository.
Table of contents:
- Installation for users using PyPi
- Installation for users without PyPi
- Usage
- Installation for contributors
Installation for users using PyPi
pip install advanced-value-counts
If errors surface please upgrade pip and setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade setuptools
Installation for users without PyPi
git clone https://github.com/sTomerG/advanced-value-counts.git
cd advanced-value-counts
pip install -e .
# optional but potentially crucial
pip install -r requirements/requirements.txt
To test whether the installation was succesfull run in the advanced-value-counts directory (DeprecationWarnings are expected)
pytest
Usage
Please consult here.
Installation for contributors
git clone https://github.com/sTomerG/advanced-value-counts.git
cd advanced-value-counts
python3 -m venv .venv
Activate the virtual environment
Windows:
.\.venv\Scripts\activate
Linux / MacOS:
source .venv/bin/activate
Install requirements
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt
Test if everything works properly
(DeprecationWarnings are expected)
With tox
tox
Without tox
pip install -e .
pytest
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
File details
Details for the file advanced-value-counts-1.0.0.tar.gz
.
File metadata
- Download URL: advanced-value-counts-1.0.0.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb670bacb6b48a1c91fc21f8360728250a4a4555a243185fabab2fe205f10892 |
|
MD5 | 16f9e68bc7031151a365ddb5b8536214 |
|
BLAKE2b-256 | 66edcd2f4e7021a2bc1fa98c627c70a25f317e1cc5a1bed3389c58bb18f3e001 |
File details
Details for the file advanced_value_counts-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: advanced_value_counts-1.0.0-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7cf2be28c99143099eb654071286a8ee38979914231449333eb475280d873cf |
|
MD5 | 99b3af8b0976b34ad764d10684342aa2 |
|
BLAKE2b-256 | 5d2aa940a3199925f7adc4207bdca14d1dedff62c3e8df1a825902058a1ebf7a |