猫史档案馆


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

用户:鸽子ECYRAZ鸽子ECYRAZ查看:0 回复:0 评论:0 创建时间:2019-07-10T15:44:26


【作品展示】

center_image

 

【作品介绍】

优秀的柱状图

 

【作品源代码】

import matplotlib.pyplot as p

p.rcParams['font.sans-serif'] = ['SimHei']
p.rcParams['axes.unicode_minus'] = False

x = [1, 2, 3]
y = [12, 41, 44]

p.xlabel('姓名')
p.ylabel("年龄(大概)")
p.title('统计')

asd = ['我', '妈妈', '爸爸']

p.bar(x, y, tick_label=asd, width=0.3, bottom=[
      1, 1, 1], color=['red', 'green', 'yellow'], hatch="\+")
p.show()

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页