I'm trying to plot 6 plots onto A4 papersize dimensions as 3x2 images.
While I've got the plots, the y axis scale is puzzling me. The data
is index ticker data(it doesn't go negative at all) but the scale goes
from -1000 to max index for the 2nd to 6th plot.
I had to use something like
ax3.axis
I'm working on some computer vision algorithm and I'd like to show how a
numpy array changes in each step.What works now is that if I have a simple
imshow( array ) at the end of my code, the window displays and shows the
final image.However what I'd like to do is to update and display the imshow
wi
On Wed, Jul 24, 2013 at 3:09 AM, Gurinder Singh Gill wrote:
> I am using python 2.7 and matplotlib animations example .
> when i am using gtk2 as a reference the plots works fine
> but when i change the backend to gtk3 i start getting errors .
> can someone help with that
> how to work with animat
I am using python 2.7 and matplotlib animations example .
when i am using gtk2 as a reference the plots works fine
but when i change the backend to gtk3 i start getting errors .
can someone help with that
how to work with animations / blit in gtk3
---