R/myfirstfun.R

Defines functions myfirstfun

Documented in myfirstfun

#' @title My first R function
#'
#' @param x A vector of quantitative data
#'
#' @return A vector of squared components
#' @export
#'
#' @examples
#'
myfirstfun <- function(x){
  x^2
}
kurt0005/MATH4753KURT documentation built on Dec. 21, 2021, 8:44 a.m.