#' @title ...
#' @name ANOVA
#'
#' @description ...
#'
#' @param dataset ...
#' @param formula ...
#'
#'
#' @author Felipe Ferreira
ANOVA <-
function(formula,dataset){
modelo<-aov(as.formula(formula),dataset)
return(modelo)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.