所以,我知道如何使用子集函数找到它。有没有办法不使用子集函数?
示例数据集:
Month A B
J 67 89
F 48 69
M 78 89
A 54 90
M 54 75
因此,假设我需要编写一个代码来在列B中找到min值。
我的代码:subset(df, B == min(df)
我的问题:如何对这个数据集使用逻辑索引和最小函数?我不想用子集。
发布于 2021-09-13 02:24:00
您可以使用which
查找位置。
x <- c(2,1,3,1)
which(x == min(x))
#[1] 2 4
要获得第一次成功,可以使用which.min
。
which.min(x)
#[1] 2
使用给定的数据集。
x <- read.table(header=TRUE, text="Month A B
J 67 89
F 48 69
M 78 89
A 54 90
M 54 75")
which(x$B == min(x$B))
#[1] 2
which(x[2:3] == min(x[2:3]), TRUE)
# row col
#[1,] 2 1
https://stackoverflow.com/questions/69161003
复制