Metadata-Version: 2.1
Name: replace-null
Version: 2.0.2
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

## Contents
This module help you to perform basic machine learning operations. Like replace null values, generate statsmodel summary etc.

###### 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.

###### Generate stats summary.
```sh
  from stats_models import StateModels
  StateModels.generate_summary(data_frame=df, x=['TV', 'Newspaper'], y='Sales')
  ```

