我有一个像这样的二维列表。
list_of_Tots:
[[335.06825999999904,
754.4677800000005,
108.76719000000037,
26.491620000000104,
156.56571000000028],
[332.8958600000008,
613.4729919999997,
142.58723599999996,
48.48214800000058,
171.39861200000016],
........
[1388.2799999999681,
670.0599999999969,
1144.8699999999897,
346.81999999999715,
70.37000000000008]]
此二维列表中有10个列表,每个列表中有5个数字。
我想通过在Jupyter笔记本上使用matplotlib显示每个列表的条形图,因此实现了以下代码。
def bar_chart(y_list, x_list=['L','LC','C','RC','R']):
x = np.array(x_list)
y = np.array(y_list)
plt.ylabel('Bedload[kg/m/year]')
plt.bar(x, y)
def display_bar_charts(list_of_arraies):
num_of_tots = len(list_of_arraies)
%matplotlib inline
fig = plt.figure(figsize=(3*5, 6))
for i, y_list in enumerate(list_of_arraies):
bar_chart(y_list)
ax = plt.subplot(2, 5, i+1)
ax.set_title('Tot({})'.format(i+1))
fig.tight_layout()
display_bar_charts(list_of_Tots)
我打算显示10个数字,因为“ list_of_Tots”中有10个列表,但是图像上只有9个数字。 我查看了数据,结果发现“ list_of_Tots”中的第一个列表在图像上不存在,第二个列表位于第一个列表应该位于的第一个位置。第三个列表排在第二位...,第四个列表排在第三位......最后一个位置,没有酒吧。
您能在这段代码中找到一些错误吗? 谢谢。
答案 0 :(得分:1)
如注释中所述,您需要先创建一些轴,然后才能在其中绘制某些内容。这样做,然后将轴传递给您的条形图绘制函数:
def bar_chart(ax, y_list, x_list=['L','LC','C','RC','R']):
x = np.array(x_list)
y = np.array(y_list)
ax.set_ylabel('Bedload[kg/m/year]')
ax.bar(x, y)
def display_bar_charts(list_of_arraies):
num_of_tots = len(list_of_arraies)
%matplotlib inline
fig = plt.figure(figsize=(3*5, 6))
for i, y_list in enumerate(list_of_arraies):
ax = plt.subplot(2, 5, i+1)
bar_chart(ax, y_list)
ax.set_title('Tot({})'.format(i+1))
fig.tight_layout()
否则,plt.bar
将查找最后一个活动的轴,这些循环在您的i=0
循环中不存在,因为bar_chart
被称为 before 已创建。