[R] How to simplify

2005-12-07 Thread Rhett Eckstein
Dear list, I have a list containing parameters (time and X1), and have "n" similar data set like the following: > cal [[1]] timeX1 1 0.0 10.006306 2 0.5 9.433443 3 1.0 8.893405 4 2.0 7.904274 5 4.0 6.243807 6 6.0 4.932158 7 8.0 3.896049 8 10.0 3.077604 [[2]] time

Re: [R] How to simplify

2005-12-07 Thread Gabor Grothendieck
I suggest that when displaying test data in a post that you do it like this: dput(cal) since then others can simply copy and paste it into their session. At any rate, using this test data: cal <- list(A = data.frame(time = 1:3, X1 = 1:3), B = data.frame(1:3, X1 = 3:5)) Pick off the sec

Re: [R] How to simplify

2005-12-07 Thread Dimitris Rizopoulos
www.student.kuleuven.be/~m0390867/dimitris.htm - Original Message - From: "Rhett Eckstein" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 07, 2005 3:38 PM Subject: [R] How to simplify > Dear list, > I have a list containing parameters (time and X1), and hav

Re: [R] How to simplify

2005-12-07 Thread Petr Pikal
HTH Petr On 7 Dec 2005 at 22:38, Rhett Eckstein wrote: Date sent: Wed, 7 Dec 2005 22:38:56 +0800 From: Rhett Eckstein <[EMAIL PROTECTED]> To: r-help@stat.math.ethz.ch Subject: [R] How to simplify > Dear list, > I have