I am working with a collaborator who uses SAS, while I am more familiar with R. My collaborator has created a GLIMMIX Procedure Type III test of fixed effects with custom hypothesis tests (using a CONTRAST Statement). I have found a way to recreate the type III test of fixed effects using:
car::Anova(model, type = 3, test = "F"
My question is, is there a way to replicate the CONTRAST Statement? Specifically, if my model is:
glm(Response ~ Group, data = dataset, family = "binomial")
and I get the type III F test of fixed effect of the Group variable as above, is there a way to test between the levels of the Group variable?
The contrast statement output in SAS gives an arbitrary label, Num DF, Den DF, F value and Pr > F. I'm looking for this type of output in R to contrast each experimental Group to a control Group.