Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.0.2 #31

Merged
merged 51 commits into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
5388939
Test coverage badge
ed-ialifinaritra Jun 8, 2022
3d94822
Test coverage 2
ed-ialifinaritra Jun 8, 2022
87ec2ba
test coverage 3
ed-ialifinaritra Jun 8, 2022
17b5e13
test coverage 4
ed-ialifinaritra Jun 8, 2022
e816dbf
test coverage 5
ed-ialifinaritra Jun 8, 2022
99e4649
test coverage 6
ed-ialifinaritra Jun 8, 2022
6936cc8
test badge coverage
ed-ialifinaritra Jun 8, 2022
78a0d16
Add badge in README
ed-ialifinaritra Jun 8, 2022
836a576
fix typo badge in README
ed-ialifinaritra Jun 8, 2022
0bd7a37
Refactoring package and test directory
ed-ialifinaritra Jul 20, 2022
772933f
Changing step in github actions
ed-ialifinaritra Jul 20, 2022
ca926a7
Add package installation in CI
ed-ialifinaritra Jul 20, 2022
e4426d4
update documentation
ed-rhilbert Aug 10, 2022
dd3b6e7
Merge pull request #1 from eurodecision/test_plot_pb
ed-rhilbert Aug 10, 2022
ac73a1d
Minor doc enhancements
ed-rhilbert Aug 10, 2022
d2819a5
Modified class names
ed-rhilbert Aug 11, 2022
ff1da27
Merge pull request #9 from eurodecision/6-change-detectors-class-names
ed-rhilbert Aug 11, 2022
18524bb
replaced apply by map(tuple,_.values)
ed-rhilbert Aug 21, 2022
5a235bd
Merge pull request #10 from eurodecision/4-optimize-detector-associat…
ed-rhilbert Aug 21, 2022
c3fce14
simplied api for 'length'
ed-rhilbert Aug 21, 2022
5448e8a
Merge pull request #11 from eurodecision/3-simplify-api-for-detector-…
ed-rhilbert Aug 21, 2022
20a1a9a
Reorganized tests
ed-rhilbert Aug 21, 2022
d47d318
Merge pull request #12 from eurodecision/2-reorganize-tests-folder
ed-rhilbert Aug 21, 2022
ad2f211
Renamed detector_obj --> detector
ed-rhilbert Aug 23, 2022
ae4088f
doc enhancement
ed-rhilbert Aug 23, 2022
4a18da6
figures with white bg
ed-rhilbert Aug 25, 2022
682e20f
Merge pull request #16 from eurodecision/14-doc-plot-graphs-visibilit…
ed-rhilbert Aug 25, 2022
422e667
Reorganized cleaning tests
ed-rhilbert Aug 25, 2022
d4e1b16
fix drop with a df detector
ed-rhilbert Aug 25, 2022
3648b13
Merge pull request #17 from eurodecision/5-cleaning-drop-fails-for-a-…
ed-rhilbert Aug 25, 2022
8be14e1
fix associations to deal with NaNs
ed-rhilbert Aug 26, 2022
fbf8c3c
detected() and valid() are now methods
ed-rhilbert Aug 27, 2022
7125bb6
Merge pull request #19 from eurodecision/18-make-detected-and-valid-f…
ed-rhilbert Aug 27, 2022
515146d
left/right --> leading/trailing
ed-rhilbert Aug 27, 2022
9abb487
Merge pull request #20 from eurodecision/15-spaces-keywords
ed-rhilbert Aug 27, 2022
84c1043
limit plot to 5e4 rows
ed-rhilbert Aug 27, 2022
b1c574e
Modified name keycollision -> alternatives
ed-rhilbert Aug 30, 2022
b4bb7a7
Added keywork 'keep'
ed-rhilbert Aug 30, 2022
f5d8daa
Merge pull request #21 from eurodecision/13-enhance-keycollision-dete…
ed-rhilbert Aug 30, 2022
9025b84
fix plot associations bug
ed-rhilbert Oct 2, 2022
9f12e8e
Merge pull request #27 from eurodecision/26-plot-modifies-association…
ed-rhilbert Oct 2, 2022
af99e9e
Hide imported classes in do api
ed-rhilbert Oct 2, 2022
23d278d
remove tutorials
ed-rhilbert Oct 17, 2022
63e62e8
Merge pull request #28 from eurodecision/8-user-guide
ed-rhilbert Oct 17, 2022
7cf7f5f
Add README.md
ed-rhilbert Oct 17, 2022
961deef
Update README.md
ed-rhilbert Oct 17, 2022
e3b1060
Update setup.py
ed-rhilbert Oct 17, 2022
797b680
Merge pull request #29 from eurodecision/24-convert-readme-to-md
ed-rhilbert Oct 17, 2022
c93efbe
Update __version__.py
ed-rhilbert Oct 17, 2022
ff76dee
Update RELEASE.md
ed-rhilbert Oct 17, 2022
2d9eff9
Update index.rst
ed-rhilbert Oct 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[run]
omit=pdcleaner/tests/*
omit=tests/*
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,30 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install python package
run: |
python setup.py develop
- name: Test with pytest
run: |
pytest
- name: Get Coverage for badge
run: |
SUMMARY="$(pytest --cov --cov-report term-missing | tail -3 | head -1)"
TOKENS=($SUMMARY)
echo "COVERAGE=$(echo ${TOKENS[-1]})" >> $GITHUB_ENV
- name: Create the Badge
uses: schneegans/[email protected]
with:
auth: ${{ secrets.GIST_TOKEN }}
gistID: 74e11571ef9b1a732e44fe9fbbdc7f0b
filename: pdcleaner_coverage.json
label: Test Coverage
message: ${{ env.COVERAGE }}
color: green

- name: Build python package
run: |
python setup.py sdist bdist_wheel
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.vscode/
.ipynb_checkpoints/
.idea/
.pytest_cache/

#compiled sources
*.py[ocd]
Expand Down
128 changes: 128 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@

# Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, caste, color, religion, or sexual
identity and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the overall
community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or advances of
any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email address,
without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.

Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.

## Scope

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[email protected].
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
reporter of any incident.

## Enforcement Guidelines

Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:

### 1. Correction

**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.

**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.

### 2. Warning

**Community Impact**: A violation through a single incident or series of
actions.

**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or permanent
ban.

### 3. Temporary Ban

**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.

**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.

### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within the
community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.1, available at
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html].

Community Impact Guidelines were inspired by
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].

For answers to common questions about this code of conduct, see the FAQ at
[https://www.contributor-covenant.org/faq]. Translations are available at
[https://www.contributor-covenant.org/translations].

88 changes: 88 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Pandas-cleaner

<img src=https://img.shields.io/pypi/v/pandas-cleaner.svg target=https://pypi.python.org/pypi/pandas-cleaner> <img src=https://img.shields.io/pypi/l/pandas-cleaner.svg target=https://pypi.python.org/pypi/pandas-cleaner> <img src="https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/ed-ialifinaritra/74e11571ef9b1a732e44fe9fbbdc7f0b/raw/pdcleaner_coverage.json">

Pandas-cleaner is a Python package, built on top of pandas, that provides methods detect, analyze and clean errors in datasets with different types of data (numerical, categorical, text, datetimes...).

![](https://github.com/eurodecision/pandas-cleaner/blob/master/docs/source/pandas-cleaner.png)

## Features

Pandas-cleaner offers functionnalities to automatically :

:arrow_right: **detect** different kind of potential errors in datasets such as outliers, inconsistencies, typos, wrong-typed ..., given predefined rules or statistiscal estimations, via an easy-to-use API extending pandas,

:arrow_right: **analyze** these errors, via reports and plots, to check the validity of the set and/or decide if any correction is needed,

:arrow_right: **clean** the datasets, either by dropping the lines with errors, emptying, correcting or replacing bad values,

:arrow_right: **reapply** the same rules to any other incoming fresh data.

## Usage

Import the package

```python
import pandas as pd
import pdcleaner
```

Create an example data series

```python
series = pd.Series([1, 5, -6, 100, 10])
```

Detect the errors in the series with a given method (such as `bounded`, `iqr`, `zscore` and many more depending the type of data...)

```python
detector = series.cleaner.detect('bounded', lower=0, upper=10)
```

Inspect the result:

```python
detector.report()
```
```none
Detection report
==============================================================================
Method: bounded Nb samples: 5
Date: January 24,2022 Nb errors: 2
Time: 16:06:08 Nb rows with NaN: 0
------------------------------------------------------------------------------
lower 0 upper 10
inclusive both sided both
==============================================================================
```

Check the potential errors that have been detected

```python
detector.detected()
```
```
2 -6
3 100
dtype: int64
```

Clean the detected errors from the series using the chosen method among `drop`, `to_na`, `clip`
, `replace`...

```python
series.cleaner.clean("drop", detector, inplace=True)
series
```
```
0 1
1 5
4 10
dtype: int64
```

## Contributing to pandas-cleaner

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.

Issues and bugs can be reported at https://github.com/eurodecision/pandas-cleaner/issues
32 changes: 31 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
## Version 0.0.1
### What's new in 0.0.2 (October 17, 2022)

+ **New detection methods**
+ `'value'` to detect cells different from a given value
+ ``'custom'`` to apply an user-defined python callable to detect the errors
+ ``'spaces'`` to detect extra spaces before or after strings
+ ``'duplicated'`` to detect duplicated records (whole row or subset of columns)
+ ``'date_range'`` to detect dates outside a given time range
+ **New cleaning method**
+ ``'cast'`` associated to the detector ``castable`` to cast strings into floats, integers, dates or NaNs
+ **Enhancements**
+ The detectors have two new useful methods `.detected()` and `.valid()` that return valid/unvalid rows
+ Gaussian detectors (``iqr``, ``zscore``, ``modzscore``) now have a systematic normality test and an option to transform the distribution
(Box-Cox, Yeo-Johnson) before applying the detector
+ Reports are more detailed when using a multivariate qualitative/ quantitative detector
+ Detector ``castable`` now applies to booleans
+ Detector ``values`` is now called ``enum``
+ Detector ``keycollision``
+ is now called ``alternatives``
+ is much faster
+ now offers the choice to keep either most frequent representation or the first encountered
+ Plot method for ``freq`` and ``cat`` detectors now have options ``nfirst`` and ``nlast``
+ API for detector ``length`` has been simplified
+ **Bug fixes**
+ Detector ``pattern`` now works with compiled regex
+ Cleaning methods applied to DataFrames have been fixed
+ Booleans are better displayed in reports
+ Fixed bug with ``association`` detector plot method
+ **Code**
+ Detector classes now have much simplier names
+ ``tests`` folder has been reorganized to mimic ``src`` structure

### What's new in 0.0.1 (February 25, 2022)

Expand Down
25 changes: 9 additions & 16 deletions README.rst → _README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
pandas-cleaner
==============

.. image:: https://img.shields.io/pypi/v/pandas-cleaner.svg
:target: https://pypi.python.org/pypi/pandas-cleaner

.. image:: https://img.shields.io/pypi/l/pandas-cleaner.svg
:target: https://pypi.python.org/pypi/pandas-cleaner

.. image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/ed-ialifinaritra/74e11571ef9b1a732e44fe9fbbdc7f0b/raw/pdcleaner_coverage.json


What is it ?
------------
Expand Down Expand Up @@ -70,7 +78,7 @@ Check the potential errors that have been detected

.. code-block:: python
detector.detected
detector.detected()
.. parsed-literal::
Expand All @@ -93,21 +101,6 @@ Clean the detected errors from the series using the chosen method among `drop`,
4 10
dtype: int64
Documentation
-------------

The documentation is still a **work in progress**.

* Clone the project

* Build the documentation using :

.. code-block:: bash
cd docs
make html
* Open `docs/build/html/index.html` in your browser
Contributing to pandas-cleaner
------------------------------
Expand Down
Binary file added docs/source/_static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/logo_ed_star.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/pandas-cleaner-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/pandas-cleaner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/plot_alternatives_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/plot_alternatives_nlast_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/source/_static/plot_association.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/source/_static/plot_freq.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/source/_static/plot_freq_nfirst_nlast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/source/_static/plot_keycollision_1.png
Binary file not shown.
Binary file removed docs/source/_static/plot_keycollision_nfirst_2.png
Binary file not shown.
Binary file removed docs/source/_static/plot_keycollision_nlast_1.png
Binary file not shown.
Binary file removed docs/source/_static/plot_numseries copy.png
Binary file not shown.
Binary file modified docs/source/_static/plot_numseries.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/source/_templates/logo.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="sidebar-end-items">
<a href="https://www.eurodecision.eu/" target="_blank">
<a href="https://www.eurodecision.com/" target="_blank">

<img src="https://www.eurodecision.com/wp-content/themes/eurodecision/img/logo-eurod.jpg" width=250>
<img src="https://www.eurodecision.com/wp-content/themes/eurodecision/img/logo-eurod.jpg" width=125>
</a>
</div>

Loading