Nothing
#' Print method for \code{dice} objects.
#'
#' Prints a summary of a \code{dice} object.
#'
#' @param x Object of class \code{dice}.
#' @param ... Ignored for now.
#'
#' @export
print.dice = function(x, ...){
assert_class(x, "dice")
assert_list(list(...))
cat("dice object generated on data with n = ", nrow(x$d_ice_curves), " for predictor \"", x$predictor, "\"\n", sep = "")
cat("predictor considered ", ifelse(x$nominal_axis, "discrete", "continuous"), ", logodds ", ifelse(x$logodds, "on", "off"), "\n", sep = "")
}
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.