Python下的图表类库pyecharts
- - 标点符今天在学习别人的数据处理的时候接触到了pyecharts,使用起来非常方便,记录下. Echarts是百度开源的一个数据可视化 JS 库. pyecharts 是一个用于生成 Echarts 图表的类库. Pyecharts使用起来非常简单. 除了支持在Jupyter Notebook内使用外,还支持在Django和Flask中使用.
今天在学习别人的数据处理的时候接触到了pyecharts,使用起来非常方便,记录下。
Echarts是百度开源的一个数据可视化 JS 库。pyecharts 是一个用于生成 Echarts 图表的类库。Pyecharts使用起来非常简单。除了支持在Jupyter Notebook内使用外,还支持在Django和Flask中使用。
先来一个简单的示例:
attr = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] v1 = [2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3] v2 = [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3] bar = Bar("Bar chart", "precipitation and evaporation one year") bar.add("precipitation", attr, v1, mark_line=["average"], mark_point=["max", "min"]) bar.add("evaporation", attr, v2, mark_line=["average"], mark_point=["max", "min"]) bar.render()
效果:
其中
相关链接:
The post Python下的图表类库pyecharts appeared first on 标点符.
Related posts: