search for: lh_fusiform

Displaying 1 result from an estimated 1 matches for "lh_fusiform".

2012 Apr 01
1
Degrees of Freedom for lme.
...and the predictors are gort and age, by time ID (time they were seen). I believe my data is set up the right way, but when I run it, I get DF for Intercept is 49, and DF for slope is 13? Why? lme.gort=lme(Volume ~ GORT_FLUENCY+AGE, random = ~ 1 | TIMEID, data = subset(vol_data, INDEX1=='LH_FUSIFORM'), na.action=na.omit) fit_vol_model1 <- function(df){ tryCatch(lme.gort <- lme(Volume ~ GORT_FLUENCY+AGE, random = ~ 1 | UID, data=df, na.action=na.omit), error=function(err) tag <<-1) data.frame(Term = rownames(anova(lme.gort)), anova(lme.gort)) + } models = list(...