Re: [R] Moving data in a dataset

2011-09-14 Thread MacQueen, Don
Spreadsheets have cells, but R does not. So you will have to be much more specific. The closest I can come would be like this example: If you want to copy the value that is in the 3rd row, 2nd column to the 4th row, 1st column, then mydata[4,1] <- mydata[3,2] But that is a copy, not a move (and

[R] Moving data in a dataset

2011-09-14 Thread sikelos
Dear all, i'm relatively new to R and so my question could be considered stupid.. By the way.. I have a dataset and i would like to move data from a cell to another specific cell. Hw can i do?? Thanks for your help!! Vi -- View this message in context: http://r.789695.n4.nabble.com/Moving-dat