Skip to main content

Remove outliers with some methods

Project description

This is the utils library for removing outliers.

  • Smirnov Grubbs Tests

>>> from outliers import smirnov_grubbs as grubbs

>>> import pandas as pd
>>> data = pd.Series([1, 8, 9, 10, 9])
>>> grubbs.test(data, 0.05)
1     8
2     9
3    10
4     9
dtype: int64

>>> import numpy as np
>>> data = np.array([1, 8, 9, 10, 9])
>>> grubbs.test(data, 0.05)
[ 8  9 10  9]

CHANGES

0.0.2 (2015-12-02)

Update setup.py

0.0.1 (2015-12-01)

Publish to pypi

0.0.0 (2015-07-28)

Create this project.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

outlier_utils-0.0.2.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

outlier_utils-0.0.2-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page