rows, disp, hp
我可以使用函数在 mtcars 数据集中找到最大值sapply
,分别给出 472 335:
sapply(list(mtcars$disp,mtcars$hp), max, na.rm=TRUE)
现在我想要cyl
这些值,即找到cyl
最大值的汽车sapply(list(mtcars$disp,mtcars$hp),max,na.rm=TRUE)
。
我应该使用哪个功能?我尝试失败which,rownames,colnames
:
mtcars(which(sapply(list(mtcars$disp,mtcars$hp),max,na.rm=TRUE)))
rownames(which(sapply(list(mtcars$disp,mtcars$hp),max,na.rm=TRUE))))
mtcars$cyl(sapply(list(mtcars$disp,mtcars$hp),max,na.rm=TRUE))