Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 536
relima Avatar asked Nov 11 '10 19:11

relima


People also ask

How do I make multiple subplots in matplotlib?

To create multiple plots use matplotlib. pyplot. subplots method which returns the figure along with Axes object or array of Axes object. nrows, ncols attributes of subplots() method determine the number of rows and columns of the subplot grid.

What will PLT subplot 333 do?

subplot(333) do? Create a blank plot that fills the figure. Create a plot with three points at location (3,3). Create a smaller subplot in the topleft of the figure.

How do I show multiple plots in matplotlib?

In Matplotlib, we can draw multiple graphs in a single plot in two ways. One is by using subplot() function and other by superimposition of second graph on the first i.e, all graphs will appear on the same plot.


1 Answers

It was easier than I expected, I just did: pylab.subplot(4,4,10) and it worked.

like image 175
relima Avatar answered Sep 18 '22 16:09

relima