将长xticks分成2行matplotlib

时间:2019-03-27 10:37:01

标签: python matplotlib

我有以下matplotlib

我想将x-ticks分为2行而不是1行,因为有时它们很长,这就是为什么它们会越过另一行,因此无法读取x-ticks。

记住,X标记不是硬编码的,它们正在变化。因此,并非总是相同的x-ticks。

因此,对于以下示例,如果我可以拥有to Schleswig-Holstein而不是:

to Schleswig-
  Holstein

我如何将字符串放在-之后的换行符中,以进行x刻度?或者说了10个字母后我想换行

顺便说一句,如果我可以像上面的示例一样将所有文本居中

所以跟随也是可以的,但不是最好的。

to Schleswig-
Holstein

plot

PS:这是我使用的代码:

# create figure
fig = plt.figure()

# x-Axis (sites)
i = np.array(i)
i_pos = np.arange(len(i))

# y-Axis (values)
u = urbs_values
o = oemof_values

plt.bar(i_pos-0.15, list(u.values()), label='urbs', align='center', alpha=0.75, width=0.2)
plt.ticklabel_format(axis='y', style='sci', scilimits=(0, 0))
plt.bar(i_pos+0.15, list(o.values()), label='oemof', align='center', alpha=0.75, width=0.2)
plt.ticklabel_format(axis='y', style='sci', scilimits=(0, 0))

# tick names
plt.xticks(i_pos, list(map((' to ').__add__, list(u.keys()))))

# plot specs
plt.xlabel('Lines')
plt.ylabel('Capacity [MW]')
plt.title(site+' '+name)
plt.grid(True)
plt.legend()
plt.ticklabel_format(style='sci', axis='y')
# plt.show()

# save plot
fig.savefig(os.path.join(result_dir, 'comp_'+name+'_'+site+'.png'), dpi=300)
plt.close(fig)

1 个答案:

答案 0 :(得分:2)

您可以按照this答案中的建议使用re,并在每10个字符之后创建一个带有新行号的新标签列表。

import re
import matplotlib.pyplot as plt

fig, ax = plt.subplots()

xlabels = ["to Schleswig-Holstein", "to Mecklenburg-Vorpommern", r"to Lower Saxony"]

xlabels_new = [re.sub("(.{10})", "\\1\n", label, 0, re.DOTALL) for label in xlabels]

plt.plot(range(3))
plt.xticks(range(3), xlabels_new)
plt.show()

enter image description here

替代

xlabels_new = [label.replace('-', '-\n') for label in xlabels]

enter image description here