Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个看起来像这样的条形图:
如何移动 x 轴标签,使它们在相应条形下方居中?我正在尝试在子图中执行此操作。
您需要set_xticks()为您的轴使用适当间隔的数字数组(您可能已经在代码中,但未正确设置)的函数,或者您可以ax.bar(x, y, align='center')在设置条形图时使用该命令。请参阅以下答案:
set_xticks()
ax.bar(x, y, align='center')
matplotlib / Python中条形图的单独标记条