Nothing
#' @title DR
#'
#' @description A distribution regression object
#'
#' @param yvals A vector of values that y can take
#' @param drlist A list where for each value of y, a distribution regression
#'
#' @export
DR <- function(yvals, drlist) {
out <- list(yvals=yvals, drlist=drlist)
class(out) <- "DR"
return(out)
}
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.