I cannot figure out how to get SAS (proc mixed) to output random solutions into a spreadsheet form that I could export to Excel. I can get it to *print * the random solutions, but then I have to type each one into Excel. Does anyone know if it is possible to do this and, if so, what command I would use?
My basic code: proc mixed data=one METHOD=REML COVTEST; class subject; model y = x z / outp=two HTYPE=3 DDFM=kr solution; random subject / solution; run; -- Amanda Ensminger Department of Biology University of Kentucky Lexington, KY 40506 [email protected]
