I think they're doing a second round now
I think they're doing a second round now
fig, ax = plt.subplots(1,1)
ax.plot(np.linspace(0,1,100),np.linspace(0,1,100))
ax.set_title('caption text here',y=-.15,loc='left')
fig, ax = plt.subplots(1,1)
ax.plot(np.linspace(0,1,100),np.linspace(0,1,100))
ax.set_title('caption text here',y=-.15,loc='left')
fig, ax = plt.subplots(1,1,figsize=(3,4))
neither
ax.figtext(...)
nor
fig.figtext(...)
work... only plt.figtext... this is above my paygrade
fig, ax = plt.subplots(1,1,figsize=(3,4))
neither
ax.figtext(...)
nor
fig.figtext(...)
work... only plt.figtext... this is above my paygrade
use
plt.figtext(0,.01,"put a note here", ha="left", fontsize=8)
use
plt.figtext(0,.01,"put a note here", ha="left", fontsize=8)
plt.title('note text', y=-0.01)
plt.title('note text', y=-0.01)