我正在使用函数,例如:ml.dis.top.plot()
. 我想旋转这些数字并删除标题。我怎样才能做到这一点?
plt.title('')
似乎适用于标题,但我无法旋转这些数字。这是脚本的一部分:
fig = plt.figure(figsize=(75, 75))
plt.subplot(1,1,1,aspect='equal')
mf.dis.top.plot(contour=True, colorbar=True)
plt.title('')
plt.savefig('top_plot.png')