#' Function to run single GLM
#'
#' Function to run single GLM of the form condition ~ signature.
#'
#' @export
runRegressionSig <- function(dat, formula, family) {
model <- glm(formula, data = dat, family = family)
return(model)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.