R中的排名-降序[关闭]


39

我希望对某些情况下的数据进行排名,在某些情况下,较大的值具有1的排名。我对R还是比较陌生,但是我看不到如何在等级函数中调整此设置。

x <- c(23,45,12,67,34,89)
rank(x)

产生:

[1] 2 4 1 5 3 6

当我希望它是:

[1] 5 3 6 2 4 1

我认为这是非常基本的,但是您可以提供的任何帮助将不胜感激。

Answers:


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.