Metadata-Version: 2.1
Name: simpleOutlierRemoval
Version: 0.0.2
Summary: For a series with assuming normal distribution, removal of outlier
Home-page: https://github.com/arjunjanamatti/simpleOutlierRemoval
Author: Arjun Janamatti
Author-email: arjunjanamatti@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Remove the outliers from Series

####### Assuming the series is normally distributed

### Instructions

1. Install:

        pip install simpleOutlierRemoval


2. Calculate the co-effecient of variance

        from simpleOutlierRemoval import main
        # get the output of the series without any outliers
        cov = main.removeOutlier(series).get()
