在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
函数 which() 可以用来找到满足条件的下标,如
x <- c(3, 4, 3, 5, 7, 5, 9) which(x > 5) 5 7
seq(along=x)[x > 5] 5 7
这里 seq(along=x) 会生成由 x 的下标组成的向量
用 which.min() 、which.max 求最小值的下标和最大值的下标,不唯一时只取第一个。如
which.min(x) 1 which.max(x) 7
评论
请发表评论