search for: fltype

Displaying 2 results from an estimated 2 matches for "fltype".

Did you mean: f_type
2007 Jan 26
0
R crash with modified lmer code
...if (is.character(family)) family <- get(family, mode = "function", envir = parent.frame()) if (is.function(family)) family <- family() if (is.null(family$family)) { print(family) stop("'family' not recognized") } fltype <- mkFltype(family) FL <- lmerFactorList(formula, mf, fltype) nFacs <- length(FL) #My insert cnames <- with(FL, c(lapply(Ztl, rownames), list(.fixed = colnames(X)))) nc <- with(FL, sapply(Ztl, nrow)) Ztl <- with(FL, .Cal...
2007 Feb 20
1
Simplification of Generalised Linear mixed effects models using glmmPQL
...t work? ##################this does not work class(m1) <- "lme" class(m2) <- "lme" anova.lme(m1,m2) ################################# m3<-lmer(dev~env*har*treat+dens + (1|pop/rep), family = Gamma) ## this generates an error Error in lmerFactorList(formula, mf, fltype) : number of levels in grouping factor(s) 'rep:pop', 'pop' is too large In addition: Warning messages: 1: numerical expression has 1851 elements: only the first used in: rep:pop 2: numerical expression has 1851 elements: only the first used in: rep:pop m4<-lmer(dev~...