R/find_max.R

Defines functions find_max

Documented in find_max

find_max <- function(x) {
    if (is.null(dim(x)))
        stop("x must be matrix like object with dim attribute")
    if (is.null(colnames(x)))
        colnames(x) <- paste0("X", seq_len(ncol(x)))
    m <- ncol(x)
    idx <- integer(nrow(x))+1L
    val <- x[,1L]
    for (j in seq_len(m)[-1L]) {
        s <- x[,j] > val
        val[s] <- x[s,j]
        idx[s] <- j
    }
    i <- factor(idx, levels = seq_len(m))
    levels(i) <- colnames(x)
    out <- data.frame(index = i, value = val)
    rownames(out) <- rownames(x)
    out
}

Try the mefa4 package in your browser

Any scripts or data that you put into this service are public.

mefa4 documentation built on Sept. 12, 2022, 5:05 p.m.