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.
Windows 7 上的 R 版本 2.11.1 32 位
现在我得到代码:lapply(x, rank)
lapply(x, rank)
但我希望“排名”为:ties.method="first"
ties.method="first"
作为可选参数的一部分...:lapply(x, rank, ties.method = "first").
...
lapply(x, rank, ties.method = "first")
详情请参阅?lapply。
?lapply