如何获取要绘制的 matplotlib Axes 实例?
为了获取轴实例,我们将使用 subplots() 方法。
步骤
制作一份年份列表。
制作一份该年份的人口列表。
使用 np.arrange(len(years)) 方法获取标签数。
设置条形的宽度。
使用 subplots() 方法创建 fig 和 ax 变量,其中默认 nrows 和 ncols 均为 1。
使用 set_ylabel() 设置图的 Y 轴标签。
使用 set_title() 方法设置图的标题。
使用 set_xticks 方法,设置 x 刻度,使用步骤 3 中创建的 x。
使用 set_xticklabels 方法,设置 x 刻度标签,使用 years 数据。
使用 plt.show() 方法显示此图。
示例
from matplotlib import pyplot as plt import numpy as np years = [1901, 1911, 1921, 1931, 1941, 1951, 1961, 1971, 1981, 1991, 2001, 2011] population = [237.4, 238.4, 252.09, 251.31, 278.98, 318.66, 361.09, 439.23, 548.16, 683.33, 846.42, 1028.74] x = np.arange(len(years)) # the label locations width = 0.35 # the width of the bars fig, ax = plt.subplots() # axes instance ax.set_ylabel('Population(in million)') ax.set_title('Years') ax.set_xticks(x) ax.set_xticklabels(years) plt.show()
输出
广告