猫史档案馆


【Python作品分享】柱状图【作品秀】

用户:Code衡Code衡查看:0 回复:0 评论:0 创建时间:2020-01-16T15:56:39


【作品展示】

center_image

 

【作品介绍】

yun

 

【作品源代码】

from pyecharts import Bar
import json
import webbrowser
import os
with open(r"C:\Users\kylel\Desktop\birthday.json", "r") as f:
    a = json.load(f)
m=[0] * 12
for i in a:
    m[int(i)-1]+=1
x = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']
y = m
bar=Bar("生日月份统计图")
bar.add("",x,y)
bar.render()
webbrowser.open("file://"+os.path.realpath("render.html"))

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页