Wolfgang venit, vidit, dixit 2006-06-01 20:27:
> Is it possible to use graph.data.file outside of the g.plot
> to access "x" and "y"?
> 
> 
> graph.data.file("wood2a.csv",x=1,y=2)

Save the data in a variable:

wood = graph.data.file("wood2a.csv",x=1,y=2)

Then wood.columns['x'] is the list of x-values etc. With "zip" you can
get one list of 2-tuples from the two lists of x- resp. y-values.

Michael


_______________________________________________
PyX-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyx-user

Reply via email to