如何偏移x轴刻度线,使彼此之间略低/较高?

时间:2019-06-06 00:25:05

标签: python matplotlib plot figure

我的绘图上的次要x轴标签非常密集。我不想让它们变小,而是希望彼此向下稍微移动,以使其适合轴内。类似于this。我尝试了label padding,但没有成功。

enter image description here

代码:

fig, ax1 = plt.subplots(figsize=(18, 6))

ax1.plot(data['date_time'], data.Casual, color='g')
ax1.plot(data['date_time'], data.Registered, color='b')

ax1.set(xlabel='', ylabel='Total # of trips started')
ax1.yaxis.label.set_size(13)
ax1.xaxis.set(
    major_locator=mdates.DayLocator(),
    major_formatter=mdates.DateFormatter('\n\n%A'),
    minor_locator=mdates.HourLocator(byhour=range(0,24,1)),
    minor_formatter=mdates.DateFormatter('%-H'),
)
ax1.tick_params(axis='x', which='minor', bottom=True)
ax1.set_xbound(data['date_time'][0],data['date_time'][166])
ax1.yaxis.set_ticks(np.arange(0, 550, 50))
ax1.set_ybound(0,550)
ax1.yaxis.grid(True, which='major')
ax1.xaxis.grid(True, which='major', color='green')

#borders
ax1.spines['left'].set_color('0.0')
ax1.spines['right'].set_color('0.0')
ax1.spines['bottom'].set_color('0.0')

# Create offset transform by 74 points in x direction
dx = 74/72.; dy = 0/72. 
offset = mpl.transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)

# apply offset transform to all x ticklabels.
for label in ax1.xaxis.get_majorticklabels():
    label.set_transform(label.get_transform() + offset)

### Trying to move them up and down here ###
labels_formatted = [label if i%2==0 else label+'\n' for i, label in enumerate(ax1.xaxis.get_majorticklabels())]
ax1.set_xticklabels(labels_formatted)


plt.show()

1 个答案:

答案 0 :(得分:2)

我认为您犯了一个基本错误。您应该在字符串的之前添加新的换行字符,因为只有这样,您才能在下面的一行看到标签文本。否则,您只是将光标发送到下一行而不打印任何内容。

此外,您需要typeof null才能获取刻度标签的字符串。我在下面显示一个示例答案。将相同的逻辑应用于您的示例。我不能这样做,因为您没有提供MCVE

label.get_text()

enter image description here