Nothing
marginal <- function(object){
UseMethod("marginal",object)
}
marginal.default <- function(object){
ff <- object$call$formula
dd <- eval(object$call$data)
fff <- update(ff,".~1")
prodlim::prodlim(fff,data=dd)
}
marginal.prodlim <- function(object){
cc <- object$call
ff <- cc$formula
cc$formula <- update(ff,".~1")
eval(cc)
}
marginal.formula <- function(object){
update(object,".~1")
}
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.