An open API service indexing awesome lists of open source software.

https://github.com/lyhue1991/easyeda

a simple but useful tool to do Exploratory Data Analysis
https://github.com/lyhue1991/easyeda

Last synced: 5 months ago
JSON representation

a simple but useful tool to do Exploratory Data Analysis

Awesome Lists containing this project

README

          

## 1,Introduction

The easyeda is a simple but useful tool to do Exploratory Data Analysis in Machine Learning.
It can be used in both classification task and regression task.

## 2,Use Example

First, you can use pip to install easyeda.

```bash
pip install easyeda
```

Then, you can use it like below.

```python
from easyeda import eda
import pandas as pd
from sklearn import datasets
from sklearn.model_selection import train_test_split

boston = datasets.load_boston()
df = pd.DataFrame(boston.data,columns = boston.feature_names)
df["label"] = boston.target
dftrain,dftest = train_test_split(df,test_size = 0.3)
dfeda = eda(dftrain,dftest,language="Chinese")

```
![](readme.jpg)

### 3,Contact to the author

Github: https://github.com/lyhue1991/easyeda

Email: lyhue1991@163.com