Nothing
#' @export
logist3 <-
function (x, a, b, c)
{
# logist3
# VALUE 3-parameter logistic function
#
xx <- exp(-(x - b)/c)
y <- a/(1 + xx)
return(y)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.