https://github.com/noone03/outlier_remover
A outlier removal tool, removes outlier row-wise using z-score or InterQuartile Range method
https://github.com/noone03/outlier_remover
iqr outlier-removal python3 z-score
Last synced: about 1 month ago
JSON representation
A outlier removal tool, removes outlier row-wise using z-score or InterQuartile Range method
- Host: GitHub
- URL: https://github.com/noone03/outlier_remover
- Owner: NoOne03
- License: mit
- Created: 2020-02-08T19:09:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-20T21:50:49.000Z (about 5 years ago)
- Last Synced: 2025-02-17T09:29:51.023Z (3 months ago)
- Topics: iqr, outlier-removal, python3, z-score
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# outlier_remover
A outlier removal tool, removes outlier row-wise using z-score or InterQuartile Range method
PyPI Project link hereUsage
Use below commands to install and use
- pip install outlier-remover-csv
- python3
>>>from outlier import outlier
>>>t = outlier.outlier(input_filename,output_filename,[method])
e.g 1. t = outlier.outlier("mydata.csv","out.csv","z_score")
e.g 2. t = outlier.outlier("mydata.csv","out.csv")