Hi everyone,
I'm new to SAS and I've got a problem here with the program being stuck on running. I have read the other posts about this before but nothing seemed to jump out to me on how exactly to fix this. I'm analyzing data using the Mixed Model task. I have 8 different excel sheets that I'm running full and reduced models for. When I started out, I had no problem running the mixed models on the data.
Now for the last 3 excel sheets I have, SAS is having difficulties apparently running the program for full and reduced models. It runs for hours without giving me a readout and when I try to cancel the job after a while it tells me that the cancel feature isn't working and to just terminate the session altogether.
This is the code that I've been using for all of my excel sheets and I'm not entirely certain as to why its suddenly causing this problem now, if it even is:
ods noproctitle;
ods graphics / imagemap=on;
proc mixed data=WORK.PARSEDINDSLEEPDAY23142 method=type3 plots=(residualPanel)
alpha=0.05;
class Line Sex Rep;
model Bout_length=Line*Sex Line Sex /;
random Rep(Line) Rep(Line*Sex) /;
run;
Does anyone have any thoughts as to what is going on? Is it something I've put in incorrectly?
Thanks