Metadata-Version: 2.1
Name: replace-null
Version: 2.0.0
Summary: A small example package
Home-page: UNKNOWN
Author: Lalu Prasad Mahto
Author-email: lalumahato020@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
License-File: LICENSE
Requires-Dist: statsmodels

# Example Package

### Contents
This module help you to replace null value with mean, mode or median of that specific feature.

```sh
  from replace_null import ReplaceNull
  ReplaceNull.replace_by_mean(data_frame)
  ```
###### Note:
    This is only for numeric features.

