I am trying to run the following program. I get the data to print out, and it is read correctly. However, I don’t see the rest of the outputs for the proc mixed statements. The log says there are no errors. I checked the results screen, but it does not show the results of the proc mixed statement, just the proc print of the data. I ran this program about a year ago, and iI could see the output. ods listing; ods HTML; data CACachexiaTumorEffectMCA; infile "F:\ MCA CC WW for SAS.csv" dlm=','; input Group $ Tumor $ Diet $ TumorStatus $ Taxa70 Taxa76 Taxa77 Taxa78 Taxa79 Taxa80 Taxa112 Taxa115 Taxa116 Taxa117 Taxa118 Taxa119 Taxa128 Taxa129 Taxa171 Taxa200 Taxa201 Taxa202 Taxa203 Taxa204 Taxa206 Taxa207 Taxa250 Taxa251 Taxa263 Taxa264 Taxa265 Taxa266 Taxa267 Taxa268 Taxa269 Taxa270; run; ods html file="MCA taxa SAS repeat.html" path=" F:\ "; ods html file="MCA taxa SAS repeat.xls" path=" F:\ "; ods pdf file="F:\MCA taxa SAS repeat.pdf"; /* Adobe PDF Proc print data=work. CACachexiaTumorEffectMCA; run; Proc mixed; class Diet TumorStatus; model Taxa70 = Diet|TumorStatus /outp=resids ddfm=kr; repeated / TumorStatus = Diet; lsmeans Diet|TumorStatus / pdiff adjust=tukey cl; ods output diffs=ppp lsmeans=mmm; *ods listing exclude diffs lsmeans; run; %include ' F:\ pdmix800.sas'; %pdmix800(ppp,mmm,alpha=.05,sort=yes); run; proc print data=mmm; run; data RxS; set mmm; if effect = 'diet*TumorStatus'; run; proc plot data=Rxs; plot estimate*diet=TumorStatus; OPTIONS PS=52 LS=101; run; OPTIONS PS=512 LS=101; proc univariate data=resids plot normal; var resid; run; run; quit; ods html close; ods xls close; ods pdf close; run; quit;
... View more