Re: How to plot ....................
- To: mathgroup at smc.vnet.net
 - Subject: [mg59421] Re: [mg59396] How to plot ....................
 - From: ggroup at sarj.ca
 - Date: Tue, 9 Aug 2005 03:30:50 -0400 (EDT)
 - References: <200508080734.DAA03479@smc.vnet.net> <1047820236.20050808014949@aggarwal.ca> <Pine.LNX.4.58.0508091320400.22037@mp.okayama-u.ac.jp>
 - Reply-to: ggroup at sarj.ca
 - Sender: owner-wri-mathgroup at wolfram.com
 
Hi,
On Tuesday, August 9, 2005 at 13:21 GMT +0900, crowds cheered as
Tkghosh unveiled:
> Thanks a lot for your help.
> It works very well.
No problem. I just discovered an even easier way that works well in
version 5.0 and above (don't know about older versions):
<<Graphics`MultipleListPlot`
rawdata = Import["filename.dat", "Table"];
xy12 = rawdata[[All, {1,2}]];
xy13 = rawdata[[All, {1,3}]];
MultipleListPlot[xy12, xy13]
This seems like a very nice way of eliminating the Transpose commands
and making it a bit easier to read.
- References:
- How to plot ....................
- From: "T. K. Ghosh" <tkghosh@mp.okayama-u.ac.jp>
 
 
 - How to plot ....................