用户:
固执的飞叶龙982查看:0 回复:0 评论:0 创建时间:2019-10-06T10:11:55
【作品展示】

【作品介绍】
d
【作品源代码】
from pyecharts import Funnel
import webbrowser
import os
import json
with open('foodchain.json', 'r') as f:
data = json.load(f)
print(type(data), data)
funnel = Funnel(" 斗示意")
nane = ''
x_axis = list(data.keys())
# y_axis = list(data.values())
y_axis = [5, 4, 3, 2, 1]
print(x_axis, y_axis)
funnel.add(nane, x_axis, y_axis, funnel_sort='ascending', is_label_show=True)
funnel.render()
webbrowser.open('file://'+os.path.realpath('render.html'))
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn