Metadata-Version: 2.1
Name: outlier-pypck
Version: 1.0.0
Summary: Outlier removal package
Home-page: https://github.com/nishchaym/outlier_py
Author: Nishchay Mahajan
Author-email: nmahajan_be17@thapar.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Outlier Removal by IQR or z-score in python 
```
Project2 for DATA ANALYSIS AND VISUALISATION(UCS633) 
Nishchay Mahajan COE18
Roll number: 101703377
```
Output is a CSV file with outlier rows removed

## Installation
`pip install outlier-pypck`

## Upgrade
`pip install outlier-pypck --upgrade`

## To use via command line
`python3 outlier.py file_name.csv IQR or z_score`


## To use in python IDLE
```
>>>from outlier_pypck.outlier import outlier
>>>outlier("Filename","IQR" or "z_score")
```

## Output

```
Number of Rows removed 

```





