如何将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
答案 0 :(得分:1)
答案 1 :(得分:-1)
你可以使用这个。 https://matplotlib.org/2.0.2/examples/pylab_examples/multiline.html
plt.xlabel('this is a xlabel\n(with newlines!)')
plt.ylabel('this is vertical\ntest', multialignment='center')