R/firstfunction.R

Defines functions myfirstfun

Documented in myfirstfun

#' @title My first function
#'
#' @param x A vector of quantitative data
#'
#' @return A vector of squared components
#' @export
#'
#' @examples
#' y <- 1:10; my firstdunction(y)
#'
myfirstfun <- function(x){
  x^2
}
Grovere89/MATH4753ESPINOZA documentation built on Dec. 17, 2021, 10:23 p.m.