I'm trying to conduct a 3 way Anova in R, using the WRS2 package. My data is heteroskedastic so i need to do a robust version e.g. trimmed means. I have my data arranged in long form (csv with 4 columns - 3 factors and 1 numeral). My input looks like this:
t3way(happiness ~ money*job*relationship, data = Dataset)
I get the following error: "Incomplete design! It needs to be full factorial!"
Thank you in advance!