I'm looking to find the columns of matrix row-maxima while ignoring NAs. E.g.,
set.seed(1)
a <- matrix(runif(15), ncol=3)
a[a<.3] <- NA
a[5,] <- NA
That is:
> a
[,1] [,2] [,3]
[1,] NA 0.898 NA
[2,] 0.372 0.945 NA
[3,] 0.573 0.661 0.687
[4,] 0.908 0.629 0.384
[5,] NA NA NA
The row maxima, ignoring NAs, can be obtained using max
:
> apply(a, 1, max, na.rm=T)
[1] 0.898 0.945 0.687 0.908 -Inf
I'm looking for the column positions of these maxima, but max.col
only works for rows without any NAs.
> max.col(a, ties.method="first")
[1] NA NA 3 1 NA
How could I find the columns of (first) maximizers for the rows with some non-missing values? I.e., something like:
[1] 2 2 3 1 NA
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…