Displaying 1 result from an estimated 1 matches for "lateralwedg".
Did you mean:
lateralwedge
2012 Aug 02
2
metafor- interpretation of moderators test for raw proportions
...d I'm
interested in seeing if this proportion differs between the three most
commonly used surgical techniques. The software is working as expected, but
I would like to double check on the interpretation of my mixed-effect model
summary.
The levels of my moderator variable surgery.type are LateralWedge, Dome, and
Complex, which I've dummy coded like this:
dat$LateralWedge<-ifelse(dat$Technique=="LateralWedge",1,0)
datDome<-ifelse(dat$Technique=="Dome",1,0)
dat$Complex<-ifelse(dat$Technique=="Complex",1,0)
When i fit this random effect model:
rma(yi,vi...