Re: [R] help with simple but massive data transformation

2010-10-11 Thread David Winsemius
On Oct 11, 2010, at 10:16 AM, clee wrote: I have data that looks like this: start end value 1 4 2 5 8 1 9 100 I want to transform the data so that it becomes: startend value 1 2 2 2 3 2

Re: [R] help with simple but massive data transformation

2010-10-11 Thread Gabor Grothendieck
On Mon, Oct 11, 2010 at 10:16 AM, clee wrote: > > I have data that looks like this: > > start     end     value > 1          4         2 > 5          8         1 > 9         10        0 > > > I want to transform the data so that it becomes: > > startend     value > 1               2 > 2          

Re: [R] help with simple but massive data transformation

2010-10-11 Thread ONKELINX, Thierry
; Onderwerp: [R] help with simple but massive data transformation > > > I have data that looks like this: > > start end value > 1 4 2 > 5 8 1 > 9 100 > > > I want to transform the data so that

[R] help with simple but massive data transformation

2010-10-11 Thread clee
I have data that looks like this: start end value 1 4 2 5 8 1 9 100 I want to transform the data so that it becomes: startend value 1 2 2 2 3 2 4 2 5 1 6