如何将matplotlib图形的ylabel拆分为行?我想保持y轴上的ylabel旋转。到目前为止,示例为here's my subplot,其相关代码如下:

plt.ylabel('Spacing of Zeroes of $J_{\\nu}(x)$', rotation=0)

当我尝试这样做时:
plt.ylabel('Spacing of Zeroes of $J_{\\nu}(x)$', rotation=0, ncol=2)

我收到此错误:
AttributeError: Unknown property ncol

最佳答案

我的建议是在字符串中引入换行符。

plt.ylabel('Spacing of\nZeroes of\n$J_{\\nu}(x)$', rotation=0, ha="right")
ojita

09-25 17:28