#' My quadratic function
#'
#'Creates a quadratic on a vector
#'
#'This is a test function for working on packages.
#' @param X a vector of double values
#'
#' @return a vector of doubles
#' @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.