gpt4 book ai didi

python - 拆分刻度标签或包装刻度标签

转载 作者:行者123 更新时间:2023-12-03 21:22:23 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Wrapping long y labels in matplotlib tight layout using setp

(2 个回答)


2年前关闭。




我有很长的绘图刻度标签,不幸的是我无法缩短。因此,我正在寻找将标签拆分为多行(换行文本)的代码。我尝试了文本换行,但它导致我的代码出错。
rotation=0 处有刻度标签使刻度标签相互重叠并变得不可读。

我也尝试过 rotation=90但刻度标签反而溢出到我的图表空间。

plt.title(param)
plt.ylabel('Measurement')
plt.xticks(x_axis, labels, rotation = 10, fontsize=8, horizontalalignment="center")
plt.tick_params(axis='x', pad=6)
lgd = ax.legend(loc = 'upper left', bbox_to_anchor=(1,1))

最佳答案

textwrap是要走的路。更精准的功能textwrap.fill() .您还没有发布您收到的错误消息,但我确实假设您传递了整个数组 labelsfill()这将导致错误消息。使用列表理解将每个单独的标签传递给 fill()它会起作用。

x_axis=range(5)
labels = ['abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'] * len(x_axis)

plt.title('param')
plt.ylabel('Measurement')
# Note list comprehension in the next line
plt.xticks(x_axis, [textwrap.fill(label, 10) for label in labels],
rotation = 10, fontsize=8, horizontalalignment="center")
plt.tight_layout() # makes space on the figure canvas for the labels
plt.tick_params(axis='x', pad=6)



enter image description here

关于python - 拆分刻度标签或包装刻度标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50768430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com