10
votes
4answers
2k views
How do you change the size of figures drawn with matplotlib?
How do you change the size of figure drawn with matplotlib?
…
2
votes
How can I dynamically get the set of classes from the current python module?
classes = [x for x in globals().values() if isinstance(x, type)]
…
1
vote
How do you change the size of figures drawn with matplotlib?
The following seems to work:
from pylab import *
rcParams['figure.figsize'] = 5, 10
This makes the figure's width 5 inches, and its height 10 inches.
The Figur …
-3
votes
How do you change the size of figures drawn with matplotlib?
Hmm, I appear to be unable to use google...
…
