Re: How to plot ....................
- To: mathgroup at smc.vnet.net
- Subject: [mg59425] Re: [mg59396] How to plot ....................
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Tue, 9 Aug 2005 03:30:53 -0400 (EDT)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`"];
data=Table[{x,3x,6x},{x,4}];
MultipleListPlot[
Drop[#,{3}]&/@data,
Drop[#,{2}]&/@data,
PlotJoined->True];
Bob Hanlon
>
> From: "T. K. Ghosh" <tkghosh at mp.okayama-u.ac.jp>
To: mathgroup at smc.vnet.net
> Date: 2005/08/08 Mon AM 03:34:45 EDT
> Subject: [mg59425] [mg59396] How to plot ....................
>
> Hi Math Guru,
>
> I need a help to plot a data file.
>
> Suppose I have a data file with the extension filename.dat. This data file
has more than 2 columns,
> say there are 3 columns. I would like to plot column 1 vs column 2 and
similarly column 1 vs column 3 on the same frame.
> I can easily plot this data file using GNU plot.
> Is it possible to use Mathematica to plot such a data
> file?
>
> Hope to get some reply.
> Thanking you in advance and with regards.
> Tarun.
>
>