I have data for a cross-over randomized controlled trial. I wonder if I can use MANCOVA to compare my outcomes (they are continuous) while having paired data. If I can't, what would be an appropriate test here? I have some covariates that I want to account for. I already did some Wilcoxon tests, but it didn't account for covariates.
The design of the study is as follows:
There are two groups: Group is given treatment (a drug) and then control (Sequence AP). Another group is given control then treatment (the same drug) (PA sequence). Between the treatment and control, there is a washout period.
I have four DVs that are continuous. Each variable is measured two times. For example, the AP sequence had the variables measured one time after the intervention (t0) and another time after the place (t1). Same thing for the PA sequence. They had the placebo, then had the variables measured (t0), then a washout period, then the intervention, and then the DVs were measured again (t1). I have covariates that are measured at baseline (before the study starts). So think of my data as a dataframe with the following columns:
1- Sequence (AP vs PA)
2- t0 (DV1)
3- t1 (DV1)
4- Covariate 1
5- Covariate 2
and so on
I would like to:
1- Compare between t0 and t1 for each sequence while controlling for covariates. I started with Wilcoxon test to compare t0 and t1 considering that this is paired data and some of the DVs are not normally distributed. However, I know that Wilcoxon doesn't account for my covariates. I thought about using MANCOVA (but am not sure if it is the right one because some of my DVs are not normally distributed and my data is paired data). Ignoring the normality thing, can we use MANCOVA for this scenario? In case of Mancova, I will have to convert my wide data to long data (i.e., instead of having each DV presented as column t0 once and t1 once, I will put them on top of each other). My DVs would be my four continuous DVs, then we have an independent categorical variable (drug vs placebo) and continuous covariates. I can do that for each sequence separately, then combine them.
Btw, Wilcoxon didn't find any significant difference.
2- If MANCOVA is not valid, what would be a simple but robust solution?
The correlation method below would work? I assume if the difference between t0 and t1 is not correlated with my covariates, then it is unlikely that they might be confounding variables.
Update: I am thinking of using correlation between the difference in my DVs (t1-t0) with my covariates to create a correlation matrix. If they are not significant, then it is safe to say that these covariates are not confounding my results. Does that make sense?
Any advice?