R/hello.R

Defines functions hello

Documented in hello

#' Hello World
#' Test function
#' @return matrix
#' @export
#' @import matrixStats
#' @importFrom stats rnorm
#' @examples
#' hello()
hello <- function(){
  sds = colSds(matrix(rnorm(100), ncol = 10, nrow = 10))
}
muschellij2/testmatrixstats documentation built on May 23, 2019, 9:56 a.m.