Nothing
##' @export
print.quantile.prodlim <- function(x,byvars,digits=2,na.val="--",...){
if (attr(x,"reverse")==FALSE)
cat("Quantiles of the event time distribution based on the ",
ifelse(attr(x,"model")=="survival","Kaplan-Meier","Aalen-Johansen"),
" method.",sep="")
else
cat("Quantiles of the potential follow up time distribution based on the Kaplan-Meier method",
"\napplied to the censored times reversing the roles of event status and censored.")
cat("\n")
cat("\nTable of quantiles and corresponding confidence limits:\n")
tab <- data.table::data.table(do.call("data.frame",x))
print(tab,digits=digits)
if(all(c(0.25,0.5,0.75) %in% tab$q)){
set(tab,j = "quantile",value = sprintf(paste0("%1.",digits,"f"),tab[["quantile"]]))
byvars = attr(x,"covariates")
cat("\n")
cat("\nMedian with interquartile range (IQR):\n")
if (attr(x,"model")=="survival"){
stab <- tab[,{
data.table::data.table("Median (IQR)" = sprintf(fmt = "%s (%s;%s)",quantile[q==0.5],
quantile[q==0.75],
quantile[q==0.25]))
},by = byvars]
}
else{
stab <- tab[,{
data.table::data.table("Median (IQR)" = sprintf(fmt = "%s (%s;%s)",quantile[q==0.5],
quantile[q==0.25],
quantile[q==0.75]))
},by = byvars]
}
print(stab)
}else stab <- NULL
invisible(list(tab,stab))
}
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.