R/jointmodeling.R

Defines functions jointmodeling

Documented in jointmodeling

jointmodeling <-
function(Model="mean",RespDist="gaussian",Link=NULL,LinPred="constant",RandDist=NULL,
Offset=NULL) {
    if (Model=="mean" && is.null(Link)) Link="identity"
    if (Model=="dispersion" && is.null(Link)) Link="log"
    res<-list(Model,Link,LinPred,RandDist,Offset)
    return(res)
}

Try the frailtyHL package in your browser

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

frailtyHL documentation built on Dec. 1, 2019, 1:25 a.m.