Possible Duplicate:
Is there a way of drawing a caption box in matplotlib
I am trying to add a text description of a graph that I draw with matplotlib. I was wondering if there was a way to add a small description that is not in the frame of the graph (ie. either below it or above it).
I saw this link add text to existing pdf using python, but I would like to use matplotlib to do so. If there is no way to do this outright, is there another way (such as creating another figure, but instead of plotting coordinates, writing text in the area)?
I also noticed there is figtext(x, y, s, fontdict=None, **kwargs)
, but this adds text at certain coordinates.