I am trying to generate a transposed view on rows in a table.
 
The table contains data like:
 
Trial   Rep   Sugar
 81      1     15
 81      2     14
 81      3     16
 81      4     15
 81      5     14
 81      6     16
 82      1     13
 82      2     12
 82      3     14
 82      4     15
 82      5     11
 82      6     15
 
 
 I want to generate a view with rows with data arranged like:
 
Trial  SugarRep1  SugarRep2  SugarRep3  SugarRep4  SugarRep5  SugarRep6
 81       15         14        16         15         14         16
 82       13         12        14         15         11         15
 
 
 I am not trying to do any calculations in R:Base, but just want to eventually
 get the data into ASCII or Excel files for sending to a different program.
 
 Thanks.
 
 Bill
 
 

Reply via email to