R/sumNSquare.R

#' Make square the sum of two numbers
#'
#' @param x numeric
#'
#' @return tbl_df
#' @export
#' @examples
#'#' freq_out(iris$Species)
sumNSquare <- function(a,b) {
    c <- (a+b)^2
    return(c)
}
Tepplin/booFactors documentation built on May 12, 2019, 5:22 p.m.