R/sirt_colMaxs.R

Defines functions sirt_colMaxs

Documented in sirt_colMaxs

## File Name: sirt_colMaxs.R
## File Version: 0.06

sirt_colMaxs <- function(x, na.rm=TRUE)
{
    res <- apply(x, 2, max, na.rm=na.rm)
    return(res)
}

sirt_colMax <- sirt_colMaxs

Try the sirt package in your browser

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

sirt documentation built on May 29, 2024, 8:43 a.m.