#' Title
#'
#' @param x
#' @param na.rm
#'
#' @return
#' @export
#'
#' @examples
sum_square <- function(x, na.rm = TRUE) {
if (na.rm == TRUE)
x <- x[!is.na(x)]
sum(x ^ 2)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.