Metadata-Version: 2.1
Name: DataHandlerForCSV
Version: 0.9
Summary: data cleaner
Home-page: https://github.com/CorbeauDistingue/dataHandlerCSV/tree/main
Author: Burak Nafi Girgin
Author-email: bnafigrgn@gmail.com
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6, <3.12
Description-Content-Type: text/markdown

# Data Handler Package

## Description
The Data Handler Package is designed to simplify data handling tasks, particularly focused on CSV files. It provides various classes and methods to streamline common data operations.

## Installation
You can install the package using pip:
```bash
pip install DataHandlerForCSV==0.8
```

## Usage

--Missing Value Handler

```python
from program.missing_value_handler import HandleMissingValue as hmv

df = pd.DataFrame({"numbs" : [1, 2, None, 4]})
copy1 = df.copy()
df = hmv.fill_as_mean(copy1, "numbs")

copy2 = df.copy()
df = hmv.fill_as_median(copy2, "numbs")

copy3 = df.copy()
df = hmv.fill_as_constant(copy3, "numbs")

copy4 = df.copy()
df = hmv.drop(copy4, "numbs")
```
