Displaying 1 result from an estimated 1 matches for "anova_area_1".
2007 Jul 12
1
error problem with glht
...6 2.90242000 4.09768000
#5 SFK 4 1.92408000 2.31617000
# ....
#21 NFK 6 3.88342000 5.50927000
#22 NFK 6 3.84522000 5.13474000
#23 NFK 6 3.49130000 5.28586000
# ....
#linear model fit and analysis of variance
fit_area_1 <- lm(lnArea~Order*basin,data=basdata)
anova_area_1 <- anova(fit_area_1)
#get coefficients, covariance matrix, terms
coef(fit_area_1)
vcov(fit_area_1)
terms(fit_area_1)
#perform multiple comparisons to test null hypothesis that
#linear model fits are the same among basins
fit1_mc <- glht(anova_area_1,linfct=mcp(basin="Tukey"))
#th...