R/LRR.R

Defines functions LRR

Documented in LRR

#' @export
LRR <- function(formula,data,times,cause,cens.model,cens.formula,...){
  fit <- riskRegression(formula=formula,
                        data=data,
                        times=times,
                        link="logistic",
                        cause=cause,
                        cens.model=cens.model,
                        cens.formula=cens.formula,
                        ...)
  fit$call <- match.call()
  fit
}

Try the riskRegression package in your browser

Any scripts or data that you put into this service are public.

riskRegression documentation built on Sept. 8, 2023, 6:12 p.m.