Nothing
#' @method print shrinkem
#' @export
print.shrinkem <- function(x,
...){
cat("Call:")
cat("\n")
print(x$call)
cat("\n")
digits <- 3
print(round(x$estimates,digits))
}
#' @method summary shrinkem
#' @export
summary.shrinkem <- function(object,
...){
cat("Call:")
cat("\n")
print(object$call)
cat("\n")
digits <- 3
print(round(object$estimates,digits))
}
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.