所以就这么简单,谢谢。
我想不出一个通用函数可以帮助我对嵌入函数的结果矩阵进行排序。
前任:
moustache <- embed(c(1:4),3)
moustache
[,1] [,2] [,3]
[1,] 3 2 1
[2,] 4 3 2
I would rather like the matrix :
[,1] [,2] [,3]
[1,] 1 2 3
[2,] 2 3 4
谢谢你的帮助。