Tools for cleaning pandas DataFrames
Project description
pyjanitor is a Python implementation of the R package janitor, and provides a clean API for cleaning data.
Why janitor?
Originally a port of the R package, pyjanitor has evolved from a set of convenient data cleaning routines into an experiment with the method chaining paradigm.
Data preprocessing usually consists of a series of steps that involve transforming raw data into an understandable/usable format. These series of steps need to be run in a certain sequence to achieve success. We take a base data file as the starting point, and perform actions on it, such as removing null/empty rows, replacing them with other values, adding/renaming/removing columns of data, filtering rows and others. More formally, these steps along with their relationships and dependencies are commonly referred to as a Directed Acyclic Graph (DAG).
The pandas API has been invaluable for the Python data science ecosystem, and implements method chaining of a subset of methods as part of the API. For example, resetting indexes (.reset_index()), dropping null values (.dropna()), and more, are accomplished via the appropriate pd.DataFrame method calls.
Inspired by the ease-of-use and expressiveness of the dplyr package of the R statistical language ecosystem, we have evolved pyjanitor into a language for expressing the data processing DAG for pandas users.
Functionality
Current functionality includes:
Cleaning columns name (multi-indexes are possible!)
Removing empty rows and columns
Identifying duplicate entries
Encoding columns as categorical
Splitting your data into features and targets (for machine learning)
Adding, removing, and renaming columns
Coalesce multiple columns into a single column
Date conversions (from matlab, excel, unix) to Python datetime format
Expand a single column that has delimited, categorical values into dummy-encoded variables
Concatenating and deconcatenating columns, based on a delimiter
Syntactic sugar for filtering the dataframe based on queries on a column
Experimental submodules for finance, biology, chemistry, engineering, and pyspark
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 pyjanitor-0.20.9.tar.gz
.
File metadata
- Download URL: pyjanitor-0.20.9.tar.gz
- Upload date:
- Size: 72.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 242bae9a2ca5d3e81648b9f8e3573dbe5e9f80a07cbb9f4e2b3fe59cd6e3b528 |
|
MD5 | a4cb85dcb090caeddc5d86d1c227669b |
|
BLAKE2b-256 | a481eb82de294e4543b8e1b416c7a6adbf663589cf4bc589104825088d4e89b6 |
File details
Details for the file pyjanitor-0.20.9-py3-none-any.whl
.
File metadata
- Download URL: pyjanitor-0.20.9-py3-none-any.whl
- Upload date:
- Size: 69.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e03260533ad4ed6d4e8a3c4558512a05ffd74daf72c7beed0c7c68f9da279c61 |
|
MD5 | 44085832e1246ffcfaa77b88b129a918 |
|
BLAKE2b-256 | e2f465bb439e52af3e56142f3e56bdca52d426d50048aa35e8b583d28516dc8c |