Nothing
##############################################################
#' OR_function
#' @description computes the odds ratio
#' @keywords internal
#' @export
#' @return Odds ratio calculation based on marginal probabilities
OR_function<- function(p0, p1){
OR<- (p1/(1-p1))/(p0/(1-p0))
return(OR)
}
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.