On Wed, Jul 2, 2008 at 2:53 PM, Brent Pedersen <[EMAIL PROTECTED]> wrote:
> hi, for pylab.plot, i am able to get the transform like this:
>
>import pylab
>xs = [0, 999]
>ys = [10, 555]
>
>f, = pylab.plot(xs, ys)
>t = f.get_transform()
>print t.transform(zip(xs, ys))
>
>
> ho
hi, for pylab.plot, i am able to get the transform like this:
import pylab
xs = [0, 999]
ys = [10, 555]
f, = pylab.plot(xs, ys)
t = f.get_transform()
print t.transform(zip(xs, ys))
how can i do that for a pylab.scatter? this:
s = pylab.scatter(xs, ys)
print s.ge