Displaying 1 result from an estimated 1 matches for "yaaply".
Did you mean:
aaply
2009 Mar 13
4
Sorting rows of a matrix independent of each other
Oh, this seemed so simple (and I'm sure the answer will be, as usual, so
thanks in advance for enlightening me). I need to sort each row of a matrix
independent of the others. For example,
> test <- matrix(c(8,7,1,2,6,5,9,4,3),nrow=3)
> test
[,1] [,2] [,3]
[1,] 8 2 9
[2,] 7 6 4
[3,] 1 5 3
I can get each row sorted well enough.
> sort(test[1,])
[1]