R/range_rowmeans.R

Defines functions range_rowmeans

Documented in range_rowmeans

#' @title Range of the rowMeans of a matrix
#' @description Returns the range over the rowMeans of a matrix
#' @param mat a matrix
#' @return the range of the rowMeans of the matrix provided.
#' @rdname range_rowmeans
#' @export 
range_rowmeans <- function(mat) {
    range(rowMeans(mat))
}
jlaffy/scalop documentation built on March 24, 2024, 9 a.m.