gpt4 book ai didi

替换每列的最大值

转载 作者:行者123 更新时间:2023-12-04 23:50:16 27 4
gpt4 key购买 nike

我有一个矩阵,我想用-1 替换每列的最大值。我怎样才能在 R 中做到这一点?
我试过,

 set.seed(14)
mat<- matrix(sample(10,20,replace=TRUE),nr=5)
apply(mat,2,which.max)
[1] 3 2 1 4

我不知道如何替换矩阵。如何处理列内重复的最大值?
谢谢。

最佳答案

尝试:

 mat[which(apply(mat, 2, function(x) x == max(x,na.rm=TRUE)))] <- -1

关于替换每列的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24204632/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com