I have seen that every time someone complains about " One or more cells is missing data. Try using ezDesign() to check your data" and they claim they don't have any missing cells or contrasts, they are wrong. But I just can't find it in my data. It started once I added the "CATc3" variable to the analysis
I ran "temp = as.data.frame(table(ALL_Sacatn$SubjectID))", but all have the correct number of factors. I used ezDesign, but they all look just fine to me. Any suggestions?
ezDesign (
data = ALL_Sacatn,
x = WOC,
y = Mod,
row = CATc3)
ezDesign (
data = ALL_Sacatn,
x = SentType,
y = WOC,
row = CATc3)
ezDesign (
data = ALL_Sacatn,
x = Mod,
y = SentType,
row = CATc3)
ezDesign (
data = ALL_Sacatn,
x = Mod,
y = SentType,
row = WOC)
ezANOVA (
data = ALL_Sacatn,
dv = ACC,
wid = .(SubjectID),
within = .(WOC, Mod, SentType, CATc3),
return_aov = F
)