Re: [R] selection of multiple subscripts

2010-01-13 Thread Duncan Murdoch
On 13/01/2010 8:09 AM, e-letter wrote: On 13/01/2010, Duncan Murdoch wrote: > On 13/01/2010 7:36 AM, e-letter wrote: >> Readers, >> >> For a data set 'x': >> >> 1 a >> 2 b >> 3 c >> 4 d >> 5 e >> 6 f >> 7 g >> 8 h >> 9 i >> >> How to select multiple subscripts to plot? For example to plot values

Re: [R] selection of multiple subscripts

2010-01-13 Thread e-letter
On 13/01/2010, e-letter wrote: > On 13/01/2010, Duncan Murdoch wrote: >> On 13/01/2010 7:36 AM, e-letter wrote: >>> Readers, >>> >>> For a data set 'x': >>> >>> 1 a >>> 2 b >>> 3 c >>> 4 d >>> 5 e >>> 6 f >>> 7 g >>> 8 h >>> 9 i >>> >>> How to select multiple subscripts to plot? For example to pl

Re: [R] selection of multiple subscripts

2010-01-13 Thread e-letter
On 13/01/2010, Duncan Murdoch wrote: > On 13/01/2010 7:36 AM, e-letter wrote: >> Readers, >> >> For a data set 'x': >> >> 1 a >> 2 b >> 3 c >> 4 d >> 5 e >> 6 f >> 7 g >> 8 h >> 9 i >> >> How to select multiple subscripts to plot? For example to plot values >> 1:3 and 9:10: >> >> plot(x[1:3,1],x[,

Re: [R] selection of multiple subscripts

2010-01-13 Thread Duncan Murdoch
On 13/01/2010 7:36 AM, e-letter wrote: Readers, For a data set 'x': 1 a 2 b 3 c 4 d 5 e 6 f 7 g 8 h 9 i How to select multiple subscripts to plot? For example to plot values 1:3 and 9:10: plot(x[1:3,1],x[,2]) and plot(x[9:10,1],x[,2]) into one plot? Neither of those will work, because yo

[R] selection of multiple subscripts

2010-01-13 Thread e-letter
Readers, For a data set 'x': 1 a 2 b 3 c 4 d 5 e 6 f 7 g 8 h 9 i How to select multiple subscripts to plot? For example to plot values 1:3 and 9:10: plot(x[1:3,1],x[,2]) and plot(x[9:10,1],x[,2]) into one plot? Yours, rhelpatconference.jabber.org r251 _