[R] Transpose Data Frame Question

2003-09-17 Thread Bruce Coate
Hi, I have a data.frame that has 3 columns (ID, Test, Result) and looks like this 1, Test1, 120 1, Test2, 34 2, Test1, 132 2, Test2, 28 etc I would like to turn it around so that it looks like this 1, 120, 34 2, 132, 28 etc I have played around some with t and reshape, but with no

Re: [R] Transpose Data Frame Question

2003-09-17 Thread apjaworski
: | | Subject: [R] Transpose Data Frame Question | -| Hi, I have

RE: [R] Transpose Data Frame Question

2003-09-17 Thread Liaw, Andy
score.test2 1 1 120 34 3 2 132 28 HTH, Andy -Original Message- From: Bruce Coate [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 1:30 PM To: [EMAIL PROTECTED] Subject: [R] Transpose Data Frame Question Hi, I have a data.frame