Re: [Matplotlib-users] Navigation Slowness in Matplotlib with Subplots

2013-11-27 Thread Michael Droettboom
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

[Matplotlib-users] Navigation Slowness in Matplotlib with Subplots

2013-11-26 Thread John Gu
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