Badfish - A missing data analysis and wrangling library in Python
Project description
# Badfish - A missing data wrangling library in Python
Badfish introduces MissFrame, a wrapper over pandas DataFrame, to wrangle through and investigate missing data. It opens an easy to use API to summarize and explore patterns in missingness.
Badfish provides methods which make it easy to investigate any systematic issues in data wrangling, surveys, ETL processes which can lead to missing data.
The API has been inspired by typical questions which arise when exploring missing data.
Badfish uses the where and how api in most of its methods to prepare a subset of the data to work on. where : Work on a subset of data where specified columns are missing. how : Either all | any of the columns should be missing.
Eg. mf.counts(columns = [‘Age’, ‘Gender’]) would give counts of missing values in the entire dataset.
While, mf.counts(where=[‘Income’], columns = [‘Age’, ‘Gender’]) would give counts of missing values in subset of data where Income is already missing.
## Installation pip install badfish
- ## Usage
>>> import badfish as bf >>> mf = bf.MissFrame(df)
### Example Will add an exmaple IPython notebook soon.
### Counts Basic counts of missing data per column.
>>> mf.counts(where=['gender', 'age'], how='all', columns=['Income', 'Marital Status'])
### Pattern Get counts on different combinations of columns with missing data. True means missing and False means present.
>>> mf.pattern()
The same can be visualized in the form of a plot (inspired by VIM package in R)
>>> mf.plot(kind='pattern')Example plot:
<img src=”https://raw.githubusercontent.com/harshnisar/badfish/master/images/patternplot.png” width=500 />
Note: Both where and how can be used in this method.
### Itemset Mining Use frequency item set mining to find subgroups where data goes missing together. Note: This uses the PyMining package.
>>> itemsets, rules = mf.frequency_item_set()
### Cohort Tries to find signigicant group differences between values of columns other than the ones specified in the group clause. Group made on the basis of missing or non-missing of columns in the group clause. Internally uses scipy.stats.ttest_ind.
This method works on the values in each column instead of column names.
Note: Experimental method.
>>> mf.cohort(group=['gender'], columns=['Income'])
## License Please see the [repository license](https://github.com/harshnisar/badfish/blob/master/LICENSE).
Generally, we have licensed badfish to make it as widely usable as possible.
## Call for contribution If you have any ideas, issues or feature requests, feel free to open an issue, send a PR or contact us.
## Authors [Harsh Nisar](http://github.com/harshnisar) & [Deshana Desai](http://github.com/deshna)
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 badfish-0.1.1a0.zip
.
File metadata
- Download URL: badfish-0.1.1a0.zip
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af640d9583f5b4d8e73b23ada4a483fd07efc47a26520856c530b82e20d5a908 |
|
MD5 | 40461edc96e08e448430532f1983886a |
|
BLAKE2b-256 | 48c7dbcaba0e5a23023ec5331f5a1e52ec092702d684a056a655baac5e906dd1 |
File details
Details for the file badfish-0.1.1a0-py3.5.egg
.
File metadata
- Download URL: badfish-0.1.1a0-py3.5.egg
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 294a6c41ad2f3fb66f34d3af69e8d986647cffca77cefa26969afaa18f58ebc6 |
|
MD5 | 86a611e0b7bb5443bb31d9991baffea2 |
|
BLAKE2b-256 | 2e2c394fa24675e0cfe8d1b8bdc4f8d10b76f3741abaf73206d4023b6ce870d4 |