#' @title Sigmoid Function
#' @description Sigmoid function.
#' @author Alberto AlmuiƱa
#' @param x Values to compute.
#' @return
#' Returns the values of the sigmoid function.
sigmoid<-function(x){
return(1/(1+exp(-x)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.