I am using functions, e.x: ml.dis.top.plot()
. I would like to rotate these figures and delete titles. How can I do that?
plt.title('')
seems to work for titles but I cannot rotate these figures. Here is the part of the script:
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')