【发布时间】:2016-08-16 00:18:55
【问题描述】:
我想获得我的 df 的所有列中的最高值(比如说最高 3)。对我来说重要的是获得这些值的行名。这是我的数据的一个子集:
structure(list(BLUE.fruits = c(12803543, 3745797, 19947613, 0, 130, 4),
BLUE.nuts = c(21563867, 533665, 171984, 0, 0, 0),
BLUE.veggies = c(92690, 188940, 34910, 0, 0, 577),
GREEN.fruits = c(3389314, 15773576, 8942278, 0, 814, 87538),
GREEN.nuts = c(6399474, 1640804, 464688, 0, 0, 0),
GREEN.veggies = c(15508, 174504, 149581, 0, 0, 6190),
GREY.fruits = c(293869, 0, 188368, 0, 8, 0),
GREY.nuts = c(852646, 144024, 26592, 0, 0, 0),
GREY.veggies = c(2992, 41267, 6172, 0, 0, 0)),
.Names = c("BLUE.fruits", "BLUE.nuts", "BLUE.veggies",
"GREEN.fruits", "GREEN.nuts", "GREEN.veggies", "GREY.fruits",
"GREY.nuts", "GREY.veggies"), row.names = c("Afghanistan", "Albania",
"Algeria", "American Samoa", "Angola", "Antigua and Barbuda"),
class = "data.frame")
到目前为止,我在第一列中尝试过这个:
as.data.frame(x[,1][order(x[,1], decreasing=TRUE)][1:10]
但是,我没有得到原始的行名,我需要像 apply/lapply 这样的方法来遍历所有列(~ 150 列)。想法?谢谢
【问题讨论】: