|
From: Alan G I. <ala...@gm...> - 2010-03-28 17:16:51
|
Using contourf in version 0.99.1, I'm seeing an unwanted white strip to the top and right, adjacent to the axes. (In fact, the strip looks just wide enough to underlay the ticks.) Alan Isaac PS Simple example: x = np.linspace(-5, 5, 100) X, Y = np.meshgrid(x, x) Z = np.sin(x*y[:,None]) fig = plt.figure() ax = fig.add_subplot(1,1,1) ax.contourf(Z) |