Nothing
#' List the survival likelihoods in INLA
#'
#' @return List of survival models in INLA
#' @keywords internal
inla_survival_families <- function(){
inla_families <- names(INLA::inla.models()$likelihood)
surv_families <- inla_families[grepl("surv", inla_families)]
surv_with_dots <- gsub("surv", ".surv", surv_families)
return(c(surv_families, surv_with_dots, "coxph"))
}
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.