and a quick sample (not suptitle, but using subplots_adjust):
import pylab as p
p.figtext(0.5,0.9,'Big Old Title', ha='center')
p.subplots_adjust(top=0.8)
p.subplot(1,2,1)
p.title('Lefthand')
p.plot([4,3,2,1])
p.subplot(1,2,2)
p.title('Righthand')
p.plot([3,3,1,3])
On Jun 21, 2007, at 21 Jun,2:1
[EMAIL PROTECTED] writes:
> I didn't see this in the examples. Can I have a figure title and titles
> for subplots too? Can someone post a quick sample? Thanks.
here's a short answer:
http://thread.gmane.org/gmane.comp.python.matplotlib.devel/1071/focus=1117
-- Phil
--