How do we get a standard error for an odds ratio obtained from output produced by the svyglm()
function in the R package "survey"?
The model fitted with svyglm is of the form:
svyglm(Outcome ~ Treatment,design=design.object,family=quasibinomial(link=logit))
The odds ratio comparing the two levels of Treatment can be easily obtained by exponentiating the coefficients produced by the summary()
command applied to the above model.
Not clear how to produce standard errors associated with this odds ratio?