On Wed, Jun 25, 2008 at 7:31 AM, eShopping
<[EMAIL PROTECTED]> wrote:
> Hi Darren
>
> thanks for the quick reply. I tried
>
> self.lines[0][0].set_data((self.data.xa,self.data.ya))
> self.lines[0][1].set_data((self.data.xa,self.data.ys))
>
> but got the error 'list index out of range' after the se
Hi Darren
thanks for the quick reply. I tried
self.lines[0][0].set_data((self.data.xa,self.data.ya))
self.lines[0][1].set_data((self.data.xa,self.data.ys))
but got the error 'list index out of range' after the second
statement. I also tried
self.lines[0][0].set_data((self.data.xa,self.data.y
Hi Alun,
On Wednesday 25 June 2008 07:09:52 am eShopping wrote:
> Hi
>
> the following code snippet is from a simple wxpython/matplotlib app
>
> # Data object class
>
> class PlotData(object):
>
> # Constructor (dummy arrays)
>
> def __init__(self):
> self.np = 100
>
>
Hi
the following code snippet is from a simple wxpython/matplotlib app
# Data object class
class PlotData(object):
# Constructor (dummy arrays)
def __init__(self):
self.np = 100
self.xa = numpy.arange(100.0)
self.ya = 2.0 * self.xa
self.ys = 4.0 *