Hello
I am trying to use GLIMMIX to model a GLMM but SAS struggles so I am probably doing something wrong.
Let's say hypothetically that I have data about radiologists, who are trying to diagnose if tumors are cancerous using 2 different imaging machines. Each doctor checks all 50 patients using both machines. Each patient has one or more tumors to be checked. It is known (by biopsy) that the tumors are cancerous, basically I am trying to model the sensitivity, in a way.
I have these variables:
Y = diagnosed correctly / did not diagnose correctly
G = Group (the machine being used)
Patient_ID
Doctor_ID
I was trying this model (based on a book, I NEED all these interactions):
proc glimmix data= data method = laplace;
class Patient_ID Doctor_ID G ;
model Y = G /solution dist = binary link = logit;
random Patient_ID Doctor_ID Patient_ID*Doctor_ID Patient_ID*G Doctor_ID*G ;
LSmeans G / pdiff cl;
run ;
The model ran and ran....and then I got an incomplete output with this msg: The SAS System stopped processing this step because of insufficient memory.
Trying to use QUAD didn't work because the random statement wasn't suitable, and using neither QUAD or LAPLACE also didn't run good.
What am I doing wrong ?
Thank you !
P.S If I use PROC MIXED (imagining that Y is continuous - for averaging) it actually works and give me estimates which are like the average sensitivity I calculated "by hand".