Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 671 Bytes

README.md

File metadata and controls

14 lines (14 loc) · 671 Bytes

Handle-Missing-Values

Create and save .csv file with replaced categorical and non-categorical missing values.PyPI Project link here

Brief

Replaces missing non-categorical values with mean of respective columns and uses KNN for missing categorical values

Installation & Usage

Use below commands:
  • pip install handle-missing-csv
  • python3
  • >>>from missing import missing
    >>>t = missing.missing(input_filename,output_filename,methods)
methods can be "replace" or "remove"
e.g . t = missing.missing("mydata.csv","out.csv","replace")