search for: withoutint

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

Did you mean: without_at
2004 Jun 07
0
dfs in lme
...variables data.df$explan <- rnorm (80, 2) data.df$treat <- as.factor (sample (1:3, 80, T)) data.df$treat1 <- as.factor (sample (1:4, 80, T)) data.df$treat2 <- as.factor (sample (1:5, 80, T)) data.df$treat3 <- as.factor (sample (1:6, 80, T)) # with each of the explanatory variables withoutInt <- lme (zv ~ explan, data= data.df, random= ~1 | gruppe) withInt <- lme (zv ~ explan, data= data.df, random= ~ explan | gruppe) anova (withoutInt) anova (withInt) anova (withoutInt, withInt) There are two main things that I wonder about: (1) the two anova() commands on the single models ha...