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

Lilac ·
更新时间:2024-11-13
· 832 次阅读

效果展示
在这里插入图片描述

Python代码

import json from pyecharts import Pie 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) pie = Pie('', width=800) pie.add('', name, sales, sales_volume, is_label_show=True) pie.render('pie.html') 数据文件链接: https://pan.baidu.com/s/1at-o0gfSGszpzZWijD1uEg 密码: if5c
作者:小白-小天



读取json 用python JSON pyecharts 饼图 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号