more than 9 subplots in matplotlib
Is it possible to get more than 9 subplots in matplotlib?
I 开发者_开发技巧am on the subplots command pylab.subplot(449);
how can I get a 4410
to work?
Thank you very much.
It was easier than I expected, I just did: pylab.subplot(4,4,10)
and it worked.
You can also do it like this with pyplot:
import matplotlib.pyplot as plt
oFig1 = plt.figure(1)
oFig1.add_subplot(4,4,11) #(m,n,x) -> x starts with 1
...
You could also do
import matplotlib.pyplot as plt
N = 10 # number of subplots you want
fig, axes = plt.subplots(nrows = N)
Then len(axes) = N
, meaning you'll have an axis for each subplot to work with.
精彩评论