python绘制直方图显示数字_Python实现柱状图【数字精准展示,使用不同颜色】
1 #-*- coding: utf-8 -*-
2 """
3 Created on Mon Jul 13 09:55:30 20194 @author: zhen5 """
6 importnumpy as np7 importmatplotlib.pyplot as plt8
9 plt.rcParams['font.sans-serif']=['SimHei'] #用黑體顯示中文
10 plt.rcParams['axes.unicode_minus']=False #正常顯示負號
11
12 x = np.array(["稽查","流程","核實","問題","現場","質量","管理","用戶","系統","整改"]) #x值取默認值
13 y = np.array([136, 216, 186, 192, 132, 122, 111, 110, 161, 86])14
15 sortIndex = np.argsort(-y) #倒序,返回排序后各數據的原始下標
16
17 x_sort = x[sortIndex] #重新進行排序,與y保持初始順序一致
18 y_sort = y[sortIndex] #重新進行排序,倒序
19
20 #定義函數來顯示柱狀上的數值
21 defautolabel(rects):22 for rect inrects:23 height =rect.get_height()24 plt.text(rect.get_x()+rect.get_width()/2.-0.25, 1.01*height, '%s' %int(height))25
26 plt.xticks(np.arange(len(x_sort)), x_sort)27 a = plt.bar(np.arange(len(x_sort)),y_sort,color=['r','g','b', 'c', 'm', 'y'])28 autolabel(a)29
30 plt.title('案例庫熱詞top10')31 plt.ylabel('詞頻', fontsize=12)32 plt.xlabel('詞語', fontsize=12)33 plt.show()
總結
以上是生活随笔為你收集整理的python绘制直方图显示数字_Python实现柱状图【数字精准展示,使用不同颜色】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 计算机创建快捷方式w10,win10中解
- 下一篇: Sketch实例教程:制作一个时钟