Displaying 1 result from an estimated 1 matches for "famnam".
Did you mean:
famname
2005 Jun 14
1
New Family object for GLM models...
...ted model or the domain and /or range of the link function. I wish someone could help me provide a solution to this problem. I have appended the function i wrote.
Add.haz<-function () {
env <- new.env(parent = .GlobalEnv)
assign(".nziek", nziek, envir = env)
famname<-"Addhaza"
link="addlink"
linkfun<-function(mu) -log(1-mu)
linkinv<-function(eta) 1-exp(-eta)
variance<-function(mu) mu*(1-mu)
validmu<-function(mu) all(mu > 0) && all(mu < 1)
mu.eta<-function(mu) 1/(1-mu)...