Metadata-Version: 2.1
Name: pandasecharts
Version: 0.3.1
Summary: Visualize your pandas data with one-line code
Home-page: https://github.com/gamersover/pandasecharts
Author: gamersover
Author-email: cmathking@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/gamersover/pandasecharts/issues
Project-URL: Source, https://github.com/gamersover/pandasecharts
Keywords: pandas,echarts,data visualization
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
License-File: LICENSE

<h1 align="center"> PandasEcharts </h1>

<p align="center">
  <a href="https://badge.fury.io/py/pandasecharts">
      <img src="https://badge.fury.io/py/pandasecharts.svg">
  </a>

  <a href="https://opensource.org/licenses/MIT">
      <img src="https://img.shields.io/github/license/gamersover/pandasecharts">
  </a>
</p>

[English README](README_en.md)

## 简介
基于[pandas](https://github.com/pandas-dev/pandas)和[pyecharts](https://github.com/pyecharts/pyecharts)的可视化工具，该项目的旨在**用一行代码可视化您的pandas数据**。

## 安装
pip 安装

```sh
$ pip install pandasecharts
```

源码安装

```sh
$ git clone https://github.com/gamersover/pandasecharts
$ cd pandasecharts
$ pip install -r requirements.txt
$ python setup.py install
```

## 使用

#### notebook环境

* 基本直方图
  
![img](https://cdn.jsdelivr.net/gh/gamersover/hexo_blog_assets@main/pandasecharts示例/Kapture-2021-12-02-at-19.51.26.6hc6dq7atk40.gif)

* 带时间变化的直方图
  
![img](https://cdn.jsdelivr.net/gh/gamersover/hexo_blog_assets@main/pandasecharts示例/Kapture-2021-12-02-at-19.56.33.28ztwkmukni8.gif)

## 后续计划

目前已支持图表类型

* [x] Pie
* [x] Bar
* [x] Bar3D
* [x] Line
* [x] Line3D 
* [x] Scatter
* [x] Scatter3D
* [x] Boxplot
* [x] Geo
* [x] Map
* [x] Funnel
  
后续更新
* [ ] 支持更多自定义样式
* [ ] 完善说明和使用文档




## License

MIT [©gamersover](https://github.com/gamersover)

