Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个向量:
x<-rnorm(100),
x<-rnorm(100)
我想创建一个向量来存储 X 中第一个、第二个、第三个...第 100 个最大值的位置。
例如,如果x=4,9,2,0,10,11所需的向量6,5,2,1,3,4是这样做的功能吗?
x=4,9,2,0,10,11
6,5,2,1,3,4
尝试使用order
order
> order(x, decreasing =TRUE) [1] 6 5 2 1 3 4
尝试这个:
> order(-x) [1] 6 5 2 1 3 4