#' logistic function
#'
#' Four parameter logistic function
#'
#' @md
#' @param x Independent variable
#' @param a Maximum value
#' @param b Steepness of curve
#' @param c Inflection point
#' @param d Minimum value
#'
#' @export
#'
logistic <- function(x, a, b, c, d){
d + (a - d)/(1 + (x / c)^b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.