> Right. It should be technically feasible to just simply tell figimage to
> use a different transformation object, but this might have implications
> elsewhere. I am very hazy in this part of mpl.
>
Hmm, I've simplified the figimage to just this line:
fig.figimage(im,100,100,origin="up
Hello
Found the example below and looks ideal for what I want with 2 exceptions.
I want the x axis to have a time period of say 12 months and y axis no's of
USD values.
So, the data is like..
Jan 2011 100034
Feb2011 345321
Mar 2011 785434
Apr 2011 523753
May 2011346723
etc etc
Aloha Eric,
> This appears to be very much a dueling event loop problem. My guess is
> that the solution will have to be something that keeps the event loops
> well separated, probably in separate processes. All interaction with
> your Client event loop would be in one process, and the callb
On 03/02/2012 01:16 AM, Jean-Baptiste Marquette wrote:
>
> Hi Ben,
>
>> You have several possible sources of problems here. I would first make
>> sure that basic matplotlib scripts work using the Qt4Agg backend on
>> your computer. Test out some regular scripts from the examples section
>> of the d
On Fri, Mar 2, 2012 at 4:57 AM, Guillaume Gay wrote:
> Hi list,
>
> I am trying to implement some GUI tools in matplotlib - more precisely a
> line profile tool and a contrast setter which I hope will be integrated to
> the skimage kit [see https://github.com/glyg/**scikits-image/blob/master/*
>
Hi Jeff,
thank you for your answer. It was very helpful to me.
Have a nice weekend!
-Jan
--
View this message in context:
http://old.nabble.com/Setting-the-bin-content-of-a-histogram-tp33412466p33428602.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
---
Hi,
you should be able to do so. In the past, I had written a small GUI that
had the ability to copy Line2D, images and text elements from an axe to
any other axes (even on different figure). This was integrated into GUI
used to change the line properties. It is a bit old and dirty but you
can fin
Hi list,
I am trying to implement some GUI tools in matplotlib - more precisely a
line profile tool and a contrast setter which I hope will be integrated
to the skimage kit [see
https://github.com/glyg/scikits-image/blob/master/skimage/io/_plugins/matplotlib_plugin.py].
Now here is my ques