在x轴上,我想显示每个数字下面带有旋转名称的数字(没有旋转)。我有以下内容,但想分别旋转名称'one','two'和'three'。
plt.xticks([1,2,3], ['1\n one', '2\n two', '3\n three'], rotation=45]
答案 0 :(得分:3)
您可以将主要和次要刻度放在相同的位置。这是一个最低限度的例子:
import pylab as pl
pl.clf()
ax = pl.gca()
ax.set_xticks([1, 2, 3])
ax.set_xticks([1, 2, 3], minor=True)
ax.set_xticklabels(['one', 'two', 'three'], minor=True)
pl.setp(ax.xaxis.get_minorticklabels(), rotation=-45)
for t in ax.get_xticklabels(minor=True):
t.set_y(-0.03)
(来自this answer的一些灵感。)