#' Square Function
#'
#'Takes a vector and returns a vector of squared components.
#'
#' @param x
#'
#' @return a vector of squared components in the form of a vector
#' @export
#'
#' @examples
myF <- function(x)
{
x^2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.