1. 首页
  2. 数据库
  3. 其它
  4. 使用Python中的pyecharts库读取json文件绘制漏斗图

使用Python中的pyecharts库读取json文件绘制漏斗图

上传者: 2020-12-23 01:44:49上传 PDF文件 58.49KB 热度 11次
绘制效果展示 * import json from pyecharts import Funnel f = open('pies.json', encoding='gbk') data = json.load(f) print(data) name = data['name'] sales = data['sales'] sales_volume = data['sales_volume'] print(name, sales, sales_volume) funnel = Funnel('', width=1000) # is_label_show=True 该属性是设置是否要显示标签
用户评论