[matplotlib-devel] should the ordering of clf() matter for AxesGrid?

2012-01-11 Thread Mike Kaufman
Given the code snippet below with clf() #1 uncommented works like one would expect - both plots are drawn. If #1 is commented out and #2 is uncommented, then the figure is cleared and neither plot is drawn. Is this the correct behavior? It seems like a bug to me. M import numpy as np import

Re: [matplotlib-devel] should the ordering of clf() matter for AxesGrid?

2012-01-11 Thread Paul Ivanov
Hi Mike, Mike Kaufman, on 2012-01-11 19:30, wrote: > Given the code snippet below with clf() #1 uncommented works like one > would expect - both plots are drawn. If #1 is commented out and #2 is > uncommented, then the figure is cleared and neither plot is drawn. Is > this the correct behavior

Re: [matplotlib-devel] should the ordering of clf() matter for AxesGrid?

2012-01-11 Thread Mike Kaufman
Ok, this was my bad. I was under the [mistaken] impression (and in retrospect I'm not sure why) that the AxesGrid call just set up the geometry and the plot calls actually created the axes. Thanks for setting me straight. M On 1/11/12 9:05 PM, Paul Ivanov wrote: > Hi Mike, > > Mike Kaufman, on