The gist here is that `subplot` doesn't really know when the new subplot
exactly overlaps another -- it's essentially unaware of what's already
there. We could do some deduplication there. However, it's also a
completely legitimate use case to create two subplots in the same
location, and the
Hello,
I had submitted a similar issue back in October of 2011. I'm using
matplotlib 1.3.1. Here's the code to produce the issue:
f = figure()
for i in xrange(9): subplot(3,3,i+1)
f.axes[0].plot(range(100))
Now try to drag the line in the first subplot around. It's extremely slow.
Now do the