I am trying to conduct a three-way robust ANOVA in R using the WRS2 package as:
t3way(Stem ~ Species*Temperature*Salinity, data = tutto)
and there is an error saying : Error in if (chkit$teststat > chkit$crit) break : missing value where is required TRUE/FALSE.
If for example I try changing it to t2way it functions but as a 2-way ANOVA... So I tried modifying the dataset to use only the t2way thinking that maybe there is some glitch with t3way as:
t2way(Stem ~ Temperature*Salinity, data = Specie)
And it gives me the same type of error as above, but it functions as t1way... Has anyone had a similar problem? Does anyone know a possible solution?
Thank you in advance