Metadata-Version: 2.1
Name: data-handler-csv
Version: 0.0.2
Summary: useful function for my work
Home-page: https://github.com/lalapopa/data_handler_csv
Author: LALAPOPA
Author-email: la_la_popa@vk.com
License: UNKNOWN
Keywords: csv,column,interpolation,data taker
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE

# CSV numeric data handler
This package allow to retrive numeric data from CSV table.

## Support feature

* Interpolate two column and take number between 
* Take column data relative to another column by index
* And more usefull function for me 

## Installation

Using pip, you can install:
	
	pip install data-handler-csv

Or using setup.py 

## Example of usage

Need .csv format data with first row be like 'header'

```python
import DataHandler as dh

df = dh.DataHandler('path/file_name.csv')
# Data should be stored in column

column_values = df.get_column('column_name')
#Take all column with that name in 'header'

```
Can take a intermediate value from column relative to another column 
```python
import DataHandler as dh
import numpy as np

df = dh.DataHandler('path/file_name.csv')

time_values = np.arange(0, 11, 1)
# WORK ONLY WITH NUMPY ARRAY IN ELEMENTS PARAMETER
force = df.get_column('force', 'time', time_values, inter_value=True)

```

## Requirements

	numpy == 1.20.2
	pandas == 1.2.4
	scipy == 1.6.3





