An open API service indexing awesome lists of open source software.

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

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 here

Usage


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])
method is optional. It can be "z_score" or "iqr", by default it is "iqr"

e.g 1. t = outlier.outlier("mydata.csv","out.csv","z_score")

e.g 2. t = outlier.outlier("mydata.csv","out.csv")