#' My quadratic function
#'
#' Creates a quadtratic on a vector
#'
#' This is a test function for working on packages.
#'
#' @param x a vector of double values
#'
#' @return a vector of double values
#' @export
#'
#' @examples
#' x=1:30; myf(x)
myf = function(x){
obj = 2 * x ^ 2 - 5 * x + 6
obj
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.