Quick question: I have found this tutorial which recommends a two-factorial design for the following setup: three menu items (fixed factor) are tested in six restaurants (random factor). The guide recommends using
aov( response ~ item + restaurant )
I think that the correct way of doing that would be
aov( response ~ item + Error( restaurant / item ) )
I am confused.
My question: am I right, or am I wrong and the author of the tutorial is right?