Hi,
I just started with R and I found that there are many options to rearrange
the data to do mixed models.
I want to use the reshape function. I have 2 between subject variables and
one within.
I was able to change the data structure but still - the result of the aov
functions are calculating everything as a within subject.
the table looks like this:
SerialNo breed treatment distance_1 distance_2
1 c57 dfp 235 3253
etc.
I changed it to look like this:
SerialNo breed treatment exposure distance
1 c57 dfp 1 235
1 c57 dfp 2 3253
etc.
Then I do:
dt<-aov(distance~(exposure*treatment*breed)+Error(SerialNo/exposure) +
(treatment*breed), dataframe)
what am I doing wrong?
thank you.
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.