#' Summary function for an object with class brrr
#'
#' @param obj Object with class brrr
#' @param round Significant figures for the output
#'
#' @return
#' @export
#'
#' @examples
summary.brrr <- function(obj, round = 3)
{
print(round(obj$out,round))
cat("Nuisance parameter : ", obj$param, "\n")
cat("Estimator : ", obj$method, "\n")
invisible(obj)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.