Displaying 1 result from an estimated 1 matches for "prefix_2".
Did you mean:
prefix2
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&...