码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib柱状图

时间:2017-05-04 17:25:27      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:imp   images   .sh   png   com   分享   numpy   image   class   

 1 import numpy as np
 2 import matplotlib.pyplot as plt
 3 size = 5
 4 a = np.random.random(size)
 5 b = np.random.random(size)
 6 c = np.random.random(size)
 7 d = np.random.random(size)
 8 x = np.arange(size)
 9 
10 total_width, n = 0.8, 3     # 有多少个类型,只需更改n即可
11 width = total_width / n
12 x = x - (total_width - width) / 2
13 
14 plt.bar(x, a,  width=width, label=a)
15 plt.bar(x + width, b, width=width, label=b)
16 plt.bar(x + 2 * width, c, width=width, label=c)
17 plt.legend()
18 plt.show()

技术分享

技术分享

 

matplotlib柱状图

标签:imp   images   .sh   png   com   分享   numpy   image   class   

原文地址:http://www.cnblogs.com/cymwill/p/6808178.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!