作者:我是你的眼中花花花
邮箱:[email protected]
Echarts 是百度开源的一个数据可视化 JS 库。主要用于数据可视化。
点击访问Echarts官网:http://echarts.baidu.com/index.html
点此直接访问Pyecharts中文官网:http://pyecharts.org/#/
安装 pyecharts
pyecharts
pip 安装
$ pip install pyecharts
源码安装
$ git clone https://github.com/pyecharts/pyecharts.git $ cd pyecharts $ pip install -r requirements.txt $ python setup.py install
快速开始
首先开始来绘制你的第一个图表
from pyecharts import Bar bar = Bar("我的第一个图表", "这里是副标题") bar.add("服装", ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"], [5, 20, 36, 10, 75, 90]) # bar.print_echarts_options() # 该行只为了打印配置项,方便调试时使用 bar.render() # 生成本地 HTML 文件
add()
主要方法,用于添加图表的数据和设置各种配置项print_echarts_options()
打印输出图表的所有配置项render()
默认将会在根目录下生成一个 render.html 的文件,支持 path 参数,设置文件保存位置,如 render(r"e:\my_first_chart.html"),文件用浏览器打开。
如果安装过程中没有任何问题,并且在本地生成了render.html文件,那么恭喜你pyecharts的安装你已经大功告成啦!那么在安装的过程中往往会出现各种各样的问题,今天我自己安装过程中出现的问题我在墙内墙外都找了一遍,发现并没有类似错误。所以我想把我在安装过程中出现的此类问题和解决问题展示出来,希望对你有用。
- >>pip install pyecharts 进行该步骤后进行import测试时出现下列代码段
>>> import pyecharts
ERROR:lml.utils:failed to import pyecharts_snapshot
Traceback (most recent call last):
File "C:\Python\lib\site-packages\lml\utils.py", line 43, in do_import
plugin_module = __import__(plugin_module_name)
ModuleNotFoundError: No module named 'pyecharts_snapshot'
查询各种办法无果后,选择pip uninstall pyecharts
最终采用这个办法解决问题:
1.直接pip install wheel
2.紧接着pip install pyecharts==0.1.9.4
3.安装成功后进行测试 import pyecharts(回车后不显示其他内容说明安装成功)
4.打开Pycharm发现在项目目录下已经生成render.html文件,说明设置成功。
希望对你有用,谢谢!