Metadata-Version: 2.1
Name: missing-values-101703283
Version: 0.1.3
Summary: python package for removing NaN values from multi-variate numerical data
Home-page: https://pypi.python.org/pypi/missing_values_101703283
Author: Katinder Kaur
Author-email: katinder08@gmail.com
License: UNKNOWN
Description: # missing_values_101703283
        
        _For : **Project-3 (UCS633)**_  
        _Submitted by : **Katinder Kaur**_  
        _Roll no : **101703283**_  
        _Group : **3COE13**_  
        
        
        missing_values_101703283 is a Python library for dealing with missing values(NaN) in a numeric dataset. This simple package uses column mean to replcae the NaN values.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install missing_values_101703283.
        
        ```bash
        pip install missing_values_101703283
        ```
        
        ## Usage
        
        ### For command prompt:
        
        ```
        usage: missing_val [-h] InputDataFile
        
        positional arguments:
          InputDataFile  Enter the name of input CSV file with .csv extension
        
        optional arguments:
          -h, --help     show this help message and exit
        ```
        
        Enter the input csv filename followed by _.csv_ extentsion
        ```bash
        missing_values sample_inputfile.csv
        ```
        after the records with NaN values are removed, the resultant data will be implicitly stored in the same file as input.
        
        #### View help
        To view usage __help__, use
        ```
        missing_values -h
        ```
        
        ### For Python IDLE:
        
        ```python
        >>> from missing_values.missing_values import missing_values_fn
        >>> missing_values_fn('inputfile.csv')
        Missing values successully replaced with column average.
        ``` 
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
