Matplotlib标签未正确填充。

huangapple go评论164阅读模式
英文:

Matplotlib labels aren't filled correctly

问题

以下是翻译好的代码部分:

  1. 我有一个包含国家年份和数值的数据框
  2. 我已经为该数据设置了一个索引
  3. ```python
  4. data = data.set_index(data['Country or Area'])
  5. data.drop(['Country or Area'], axis=1, inplace=True)
  6. data.head()

我尝试创建一个类似这样的简单图表:

  1. %matplotlib inline
  2. albania = data.loc['Albania']
  3. ax = albania[['Year', 'Value']].plot(kind='bar', figsize=(8,5), title="Albania 1990年至2015年的降水量")
  4. ax.set_ylabel("降水量")
  5. ax.set_xlabel("年份")

然而,条形图显示的y轴标签是'Albania'的索引名称,这是不正确的。它应该显示年份范围。

  1. 如有其他需要,请随时提问。
  2. <details>
  3. <summary>英文:</summary>
  4. I have a dataframe with list of countries, years and values.
  5. [![enter image description here][1]][1]
  6. I&#39;ve set an index for that data:

data = data.set_index(data['Country or Area'])
data.drop(['Country or Area'], axis=1, inplace=True)
data.head()

  1. I&#39;m trying to create a simple plot like this:

%matplotlib inline
albania = data.loc['Albania']
ax = albania[['Year','Value']].plot(kind='bar', figsize=(8,5), title="Precipitation of Albania between 1990 and 2015")
ax.set_ylabel("Precipitation")
ax.set_xlabel("Years")

  1. However, the bar shows y_labels with the index name &#39;Albania&#39;, which is not correct. It should show the range of years.
  2. [![enter image description here][2]][2]
  3. [1]: https://i.stack.imgur.com/D7Yzq.png
  4. [2]: https://i.stack.imgur.com/eb20D.png
  5. What should I do to change the labels to the correct one?
  6. </details>
  7. # 答案1
  8. **得分**: 1
  9. ax.set_xticklabels(albania['Year']) 这将把所有的x轴刻度标签设置为一系列年份。
  10. <details>
  11. <summary>英文:</summary>
  12. ax.set_xticklabels(albania[&#39;Year&#39;])
  13. This will set all your x-tick labels to a range of years
  14. </details>

huangapple
  • 本文由 发表于 2023年3月12日 19:23:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/75712770.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定