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

条形图

时间:2019-11-26 13:44:23      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:append   font   for   style   color   end   mat   label   width   

基本用法

import matplotlib.pyplot as plt

obj_list = obj_list[:100]
x_axis = range(len(obj_list))
y_axis = []
for x in obj_list:
    y_axis.append(x[1])
plt.figure(figsize=(16,10))
rects = plt.bar(left=x_axis, height=y_axis, width=0.6, color=red)
#plt.xticks(range(len(label_list)), label_list, fontsize=8)
#plt.title(‘motif num‘)
plt.legend()
# for rect in rects:
#     height = rect.get_height()
#     plt.text(rect.get_x() + rect.get_width() / 2, height+1, str(height), ha="center", va="bottom")
plt.grid(True)
plt.show()

 

条形图

标签:append   font   for   style   color   end   mat   label   width   

原文地址:https://www.cnblogs.com/xumaomao/p/11934581.html

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