I have started looking into robust methods of data analysis. In particular, robust regression methods for ANCOVA type models using the "lmRob" function from the "robust" library in R. I'm having a hard time finding what assumptions I need to satisfy in order to use this. I've read that they can be useful in situations where there are outliers, heterogeneity of variance and for non-normal distributions, i.e., http://psych.colorado.edu/~willcutt/res_meth/Wilcox_1998.pdf (more recently http://www.springerlink.com/content/x761787633512440/). However, I'm unsure of how much departure robust measures will allow for and what other traps might be awaiting me.
References and/or examples will be much appreciated.
Data description:
sample size ~ 1000, differs substantially between groups
1st factor has 3 levels; 2nd factor has 3 levels
3 covariates, 1 of which is related to both factors, 1 related to only one factor
The model I'm especially interested in examining is something like this:
lmr1 <- lmRob(dv ~ cov1 + cov2 + cov3 + fac1 * fac2, data)