Metadata-Version: 2.1
Name: Replace_Missing_Values-101883055
Version: 0.0.1
Summary: A python package for implementation of replacing NaN values in the dataset using Simple Imputer method.
Home-page: https://github.com/pypa/sampleproject
Author: Naman Goyal
Author-email: ngoyal_be17@thapar.edu
License: UNKNOWN
Description: # Replace Missing Values
        
        A python package for implementation of replacing NaN values in the dataset using Simple Imputer method.
        
        Missing values can lead to inconsistent results. We can either ignore the rows with missing data columns or substitute the values with some calculated output.
        When the dataset is too small, we canâ€™t afford to lose the row data even if it contains missing columns. In those cases, we will look at substituting the column data with some values.
        Imputation is another approach to resolve the problem of missing data.
        The missing column values are substituted by another computed value. There might be scenarios where the dataset is small or where each row of the dataset represents a critical value.
        In those cases, we cannot remove the row from the dataset. The missing values can be imputed.
        There are different strategies to define the substitute for the missing value.
        The value can be substituted by these values:
        The mean value of the other column values available in the training dataset.
        The median value of the other values available in the training dataset.
        Substitute with the most frequent value in the training dataset.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
