Metadata-Version: 2.1
Name: 101703301-project3
Version: 0.0.1
Summary: Handling NULL values in a dataset using backfill and forwardfill
Home-page: UNKNOWN
Author: Kushagra-Thakral
Author-email: kushagra.thakral@gmail.com
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

#Handling NULL values in a dataset.
##Project3 UCS633
##Submitted by Kushagra Thakral 101703301<br>
To run in cmd line:<br>
python3 missing.py input_file_name.csv<br>
Count of null values present in each columns will be displayed.<br>
Then count of null values present after the use of package will be displayed(null values will be zero).<br>
Then the dataset will be displayed(first 5 rows).<br>
An output fill will be created with the name input_file_name_not_null.csv<br>
The package only works for csv files.<br>
This package uses backfill method followed by forward fill method to handle all the null values<br>


