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

https://github.com/noone03/handle_missing_value

Create and save .csv file with replaced categorical and non-categorical missing values
https://github.com/noone03/handle_missing_value

categorical-attributes missing-values non-categorical python3

Last synced: 7 months ago
JSON representation

Create and save .csv file with replaced categorical and non-categorical missing values

Awesome Lists containing this project

README

          

# 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")