Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

In R there's a cool way to automatically tile a series of plots. if I execute: par(2,2) then I can seqentially call plot(...) to get a 2x2 grid of plots

In matplot lib, it seems difficult to do this. I don't enjoy writing the fig, ax = plt.subplots() and then doing the loop through axes to plot each time... this seems like overkill.

Is there a higher level way to get the same behavior from python?

share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.