Re: [R] How to draw three line on the same picture ?

2009-12-11 Thread Patrick Connolly
On Thu, 10-Dec-2009 at 10:14PM -0800, z_axis wrote: | | The following is sampling data: | No V1 V2 V3 | 1 0.23 0.12 0.89 | 2 0.11 0;56 0.12 | ... | | I just want to draw three lines on same picture according to value of V1, V2 | and V3. ?lines --

Re: [R] How to draw three line on the same picture ?

2009-12-11 Thread z_axis
thanks for your answer ! Would you mind giving me an example using my data ? Sincerely! Patrick Connolly-4 wrote: On Thu, 10-Dec-2009 at 10:14PM -0800, z_axis wrote: | | The following is sampling data: | No V1 V2 V3 | 1 0.23 0.12 0.89 | 2 0.11 0;56 0.12 | ... | |

Re: [R] How to draw three line on the same picture ?

2009-12-11 Thread jim holtman
try this: x - read.table(textConnection(No V1 V2 V3 1 0.23 0.12 0.89 2 0.11 0.56 0.12), header=TRUE) matplot(x[,1], x[,-1], type='l') On Fri, Dec 11, 2009 at 3:39 AM, z_axis z_a...@163.com wrote: thanks for your answer ! Would you mind giving me an example using my data ?

Re: [R] How to draw three line on the same picture ?

2009-12-11 Thread z_axis
It works ! thank you very much. Moreover, How about reading data from file ? The file is formatted as: No V1 V2 V3 1 0.23 0.12 0.89 2 0.11 0.56 0.12 .. jholtman wrote: try this: x - read.table(textConnection(No V1 V2 V3 1 0.23 0.12 0.89 2 0.11 0.56 0.12),

Re: [R] How to draw three line on the same picture ?

2009-12-11 Thread z_axis
%cat test.csv No,HS,ZangF,ZenF 1,0.25,0.5,0.57 2,0.10,0.23,0.12 3,0.20,0.25,0.1 .. d - read.csv(000301.txt) matplot(d[,1], d[,-1], type='l') It works. However, i hope the legend is displayed. Sincerely! z_axis wrote: It works ! thank you very much. Moreover, How about reading data

[R] How to draw three line on the same picture ?

2009-12-10 Thread z_axis
The following is sampling data: No V1 V2 V3 1 0.23 0.12 0.89 2 0.11 0;56 0.12 ... I just want to draw three lines on same picture according to value of V1, V2 and V3. I am a R newbie, so any suggestion is appreciated ! -- View this message in context: