本文实例为大家分享了python使用Matplotlib画条形图的具体代码,供大家参考,具体内容如下
数据
中国的四个直辖市分别为北京市、上海市、天津市和重庆市,其2017年上半年的GDP分别为12406.8亿、13908.57亿、9386.87亿、9143.64亿。
代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# encoding:utf-8 import matplotlib.pyplot as plt # 构建数据 GDP = [ 12406.8 , 13908.57 , 9386.87 , 9143.64 ] # 中文乱码的处理 plt.rcParams[ 'font.sans-serif' ] = [ 'Microsoft YaHei' ] plt.rcParams[ 'axes.unicode_minus' ] = False # 绘图 plt.bar( range ( 4 ), GDP, align = 'center' ,color = 'steelblue' , alpha = 0.8 ) # 添加轴标签 plt.ylabel( 'GDP' ) # 添加标题 plt.title( 'Comparing about four cities GDP' ) # 添加刻度标签 plt.xticks( range ( 4 ),[ 'Beijing' , 'Shanghai' , 'Tianjin' , 'Chongqing' ]) # 设置Y轴的刻度范围 plt.ylim([ 5000 , 15000 ]) # 为每个条形图添加数值标签 for x,y in enumerate (GDP): plt.text(x,y + 100 , '%s' % round (y, 1 ),ha = 'center' ) # 显示图形plt.show() plt.show() |
画图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/roguesir/article/details/78178342