maxCol {base} | R Documentation |
Find the maximum position for each row of a matrix, breaking ties at random.
max.col(m)
m |
numerical matrix |
Ties are broken at random. The determination of “tie” assumes that the entries are probabilities: there is a relative tolerance of 1e-5, relative to the largest entry in the row.
index of a maximal value for each row, an integer vector of
length nrow(m)
.
Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. New York: Springer (4th ed).
which.max
for vectors.
data(swiss) table(mc <- max.col(swiss))# mostly "1" and "5", 5 x "2" and once "4" swiss[unique(print(mr <- max.col(t(swiss)))) , ] # 3 33 45 45 33 6