#'@title Divide two vectors
#'@description
#'This function divides one numeric vector from another
#'and returns a numeric vector
#'
#'@param x a numeric vector
#'@param y a numeric vector
#'
#'@return a numeric vector
#'
#'@export
#'
#'@examples
#'divide(2, 3)
#'divide(mtcars$mpg, mtcars$hp)
divide <- function(x, y){
x / y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.