Metadata-Version: 2.1
Name: df-csv-excel
Version: 0.1.42
Summary: Commonly used functions for Data Scientists
Home-page: https://github.com/cheerzhang/read_csv_excel
Author: ZhangLe
Author-email: zhangle@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/cheerzhang/read_csv_excel/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas >=0.25.1
Requires-Dist: numpy >=1.21.5
Requires-Dist: plotly >=5.18.0
Requires-Dist: matplotlib >=3.7.1
Requires-Dist: SciPy >=1.11.4
Requires-Dist: cdifflib >=1.2.6

# read_csv_excel

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Overview

`read_csv_excel` is a Python library that provides a collection of common and customized functions for handling data, particularly CSV and Excel data. It simplifies the process of converting data into Pandas DataFrames, performing statistical analysis, and creating visualizations.


## Document
[Document](https://read-doc-1.readthedocs.io/en/main/index.html)


## Features

- CSV and Excel data conversion to Pandas DataFrames.
- Statistical analysis of DataFrames.
- Customized functions for common data handling tasks.
- Plotting functions for data visualization.

## Installation

You can install `read_csv_excel` using pip:

```
pip install df-csv-excel
```

pypi page link is here:(https://pypi.org/project/df-csv-excel/)

## Usage read and process data

Here is some examples for the functions, for more details, please refer to (https://pypi.org/project/df-csv-excel/)   
```
from df_csv_excel import read_data 

df = read_data.read_data_by_path('a.xlsx')
df['name'] = read_data.get_feature_from_json(df, 'json_column', ['key_name1', 'key_name2', 'key_name3])
df['time_column'] = read_data.foramt_date_column(df, 'date')
```

## Usage plot data

```
from df_csv_excel import read_data, plot_data 

df = read_data.read_data_by_path('a.xlsx')
plot_data.plot_histgram(df, 'column_name')
```

## Contributing
If you have suggestions, enhancements, or find issues, please feel free to contribute! Follow the Contribution Guidelines for more details.




