#' @title FUNCTION_TITLE
#' @description FUNCTION_DESCRIPTION
#' @param x PARAM_DESCRIPTION
#' @param ... PARAM_DESCRIPTION
#' @return OUTPUT_DESCRIPTION
#' @details DETAILS
#' @rdname summary.oneway
#' @export
summary.oneway <- function(x, ...){
if(!inherits(x, "oneway")) stop("x must be class 'oneway'")
print(anova(x$anova))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.