这是代码,由于某种原因,条形图显示了六个值中前 5 个的 y 值。第六个国家始终显示值 0,这与数据不正确。
def gdp_comp(year):
labels = list(df[df.Year == year]['Country'])
fig,ax = plt.subplots()
plt.bar(range(len(df[df.Year == year]['GDP'])),df[df.Year == year]['GDP'])
plt.ylabel('GDP (e+10)')
plt.xlabel('Countries')
ax.set_xticks(range(len(df[df.Year == year]['GDP'])))
ax.set_xticklabels(labels, rotation='vertical')
plt.title("Countries Comparison Of GDP (e+10) in {}".format(str(year)))
plt.show()
gdp_comp(2005)
我怎样才能让它绘制第六个国家?