Hello, I'm new at this, so not sure if I'm explaining this correctly, but I'm trying to estimate predicted probably of a doctor having enough interaction with a patient based on predictors having a set value. So probabilty Doctor 1, Doctor 2, Doctor 3, etc has enough interaction with the patient if the patient is age 18-34, female, with a college degree or higher. I tried using this code below using "estimate", but it doesn't seem to be working. Anyone know what I might be doing wrong? proc glimmix data=tables2 method=laplace noclprint;
class attending;
model doc_interaction (descending) = age18_34 age35_54 gender_m edu_hs_m edu_some_m edu_col_M
/CL DIST=Binary link=logit solution;
estimate "Intercept Age 18-34, female, college grad or higher"
int 1 age18_34 1 gender_m 1 edu_col_m 1 / ILINK;
random intercept / subject=attending S CL Type=VC ;
COVTEST / wald;
run;
... View more