美文网首页
dplyr-获取行最大值与行最大值对应的索引列

dplyr-获取行最大值与行最大值对应的索引列

作者: 倪桦 | 来源:发表于2023-01-10 22:03 被阅读0次

    Get the value of the max within row

    data %>% mutate(row.max_val = do.call(pmax, (.))) 
    

    Get the argmax within row

    data %>% mutate(row.argmax = names(.)[max.col(.)])
    

    相关文章

      网友评论

          本文标题:dplyr-获取行最大值与行最大值对应的索引列

          本文链接:https://www.haomeiwen.com/subject/okavcdtx.html