Nothing
#' Weibull survival function
#'
#' @description The function `survw_f` computes the Weibull survival function.
#'
#'
#' @param t time
#' @param ascale scale parameter for the Weibull distribution
#' @param bshape shape parameter for the Weibull distribution
#'
#'
#' @export
#' @keywords internal
#' @return survival function
#' @author Marta Bofill Roig
#'
#'
survw_f <- function(t,ascale,bshape){
return(exp(-(t/ascale)^bshape))
}
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.