R语言中which.max、which.min函数,返回最大值和最小值的索引

 

1、

a <- c(20, 10, 40, 80, 50)
which.max(a)      ## 返回最大值的索引
which.min(a)      ## 返回最小值的索引

 

posted @ 2022-06-06 19:01  小鲨鱼2018  阅读(471)  评论(0编辑  收藏  举报