search for: prefix_4

Displaying 1 result from an estimated 1 matches for "prefix_4".

Did you mean: prefix_
2005 Sep 19
2
dynamic object names?
I am trying to extract data from a matrix. Let's say that i am interested in extracting rows from a 4x4 matrix. Instead of giving a fix name to these 4 rows I would like to add a number to prefix. As result I should get 4 objects named: prefix_1 prefix_2 prefix_3 prefix_4 I attepted to solve the problem with a loop, but without success. Any hints?? > matrix(LETTERS[1:16], ncol=4) -> MM > MM [,1] [,2] [,3] [,4] [1,] "A" "E" "I" "M" [2,] "B" "F" "J" "N" [3,] "C...