美文网首页
pyecharts在notebook展现图

pyecharts在notebook展现图

作者: cure_py | 来源:发表于2019-03-13 21:05 被阅读0次
from pyecharts import Bar
bar = Bar("我的第一个图表","这里是副标题")
bar.add("服装",["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"],[5, 20, 36, 10, 75, 90])
# show_config()
# render(r"e:\my_first_chart.html")
bar.render_notebook()   #这个是重点啊 . # 新版本不需要这样

相关文章

网友评论

      本文标题:pyecharts在notebook展现图

      本文链接:https://www.haomeiwen.com/subject/kbrxmqtx.html