Hello proc mixed experts,
Variables in my data are ID, itemduration(time spent answering each question), difficulty(item difficulty). each ID anwer 150 questions, that is, row 1-row 150 are the same ID, row 151-row 300 are the same ID, etc.
I used the following code to model the data
proc mixed data= try method=ml;
class ID;
model itemduration = difficulty / solution outp=t;
random intercept difficulty / subject=ID type=un g solution;
ods output solutionR=randest;
run;
the following is portion of the output data "randest", I can't understand why "std Err Pred" are the same for all IDs. I am trying to get standard errors for each ID. How should I edit the code so that I can get standard errors for each ID?
Thank you for any help.
Moved to Stat Procs for better visibility.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.