#'@title Divide one numeric vector by another
#'@description
#'This function divides one numeric vector by another
#'a numeric vector 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.