I have compared two regression models using ANCOVA by following this tutorial but using my own data. Here is a snippet of my data:
X MC CC RC FM AT HS
1 0.874375 NA NA NA NA grab 1
2 0.451250 0.41948802 0.44885230 0.45113473 0.408781437 release 1
3 0.099375 NA NA NA NA grab 1
4 0.608125 0.50268263 0.52253593 0.51664870 NA release 1
5 0.151875 0.29038872 0.30763473 0.30972255 NA grab 2
6 0.948750 0.68792116 0.69742615 0.68139072 NA release 2
7 0.452500 0.42250699 0.45583832 0.47252445 NA grab 2
8 0.894375 0.62101946 0.62549900 0.62338872 NA release 2
MC, CC, RC and FM are four variables that can model X. There are two categorical variables each with two levels: Action Type (AT) and Hand Side (HS). Hand side 1 means right and 2 is left hand.
I want to know if hand side is a covariate in any of the models. Consider the case for RC, for this model I perform ANCOVA using the following R command:
aov(X ~ RC * HS, data = X.models)
here are the results:
Df Sum Sq Mean Sq F value Pr(>F)
RC 1 58.427 58.427 10148.368 < 2.2e-16 ***
HS 1 10.732 10.732 1864.025 < 2.2e-16 ***
RC:HS 1 0.069 0.069 11.927 0.0005803 ***
Residuals 859 4.946 0.006
My understanding is that there is significant interaction between HS and RC, and therefore the difference between the slops of the two models is significant. However, in this case the difference between the intercepts is much larger and more interesting. Is there a complementary measurement that would represent the effect size of the interaction? My current solution is to report the difference in slope and intercept alongside the ANCOVA P value, but I am not sure if that is the best way to do it.