Displaying 1 result from an estimated 1 matches for "famv".
Did you mean:
fam
2010 Jun 17
0
Modifyiing R working matrix within "gee" source code
..."mu(1-mu)", "mu^2")
corstrs <- c("independence", "fixed", "stat_M_dep", "non_stat_M_dep",
"exchangeable", "AR-M", "unstructured")
linkv <- as.integer(match(c(family$link), links, -1))
famv <- match(family$family, fams, -1)
if (famv < 1)
stop("unknown family")
if (famv <= 4)
varfunv <- famv
else varfunv <- match(family$varfun, varfuns, -1)
varfunv <- as.integer(varfunv)
corstrv <- as.integer(match(corstr, corstrs, -1))...