I would like to use network meta-analysis (or multiple treatment comparison) to investigate the main-effect and interaction of two factors on a continuous outcome variable. As an example the effect of hair-color (dark/light) and gender (male/female) on a blood pressure (continuous). I have mean, variance and sample size from studies that compared dark-males to dark-females (studies 1 & 2), studies that compared dark-males to light-males (study 5), studies that compared dark-females with light-females, studies that compared dark-males with light-males and light-females (study 7). Most importantly I also have studies that compared males to females irrespective of hair-color (studies 3 and 4).
my_data <- data.frame(study = c("Study_1","Study_1", "Study_2", "Study_2", "Study_3", "Study_3", "Study_4", "Study_4", "Study_5", "Study_5", "Study_6", "Study_6", "Study_7", "Study_7", "Study_7"), treatment = c("dark_male", "dark_female","dark_male", "dark_female","male", "female","male", "female", "dark_male", "light_male", "dark_female", "light_female", "dark_male", "light_male", "light_female"), mean=c(10,12,11,14,11,21,14,25,10,12,14,20,12,14,20), std.dev=c(1,1.2,1,1.2,2,2.1,1,1.3,1.3,1,1,1,1.2,1.2,1.3), sampleSize=c(10,10,20,20,15,15,35,35,18,19,20,22,40,41,40))
my_data
I am not sure if I can include studies 3 and 4 since they include light- and dark-haired subjects.
Is it possible to investigate the main effects of hair-color, gender as well as their interaction using one of the available r packages for network meta-analysis (gemtc, netmeta, metafor)? What would be a suitable way to calculate post-hoc tests?