Hi, I am trying to output some tables/charts to an RTF file using SAS University and everything transfers, minus the graphics and the table. However, when I use the same code (but change the output type) for pdfs and excel files, the output works perfectly. I'm on a Mac, not sure if that's the problem. The only thing I've noticed is that the RTF file opens up as in text edit, instead of Microsoft Word, so I don't know if that is the problem? If there are any mac users with experience, some guidance would be great! My code for part of what I'm trying to output is: libname pm410 '/folders/myfolders'; proc contents data=pm410.analysis_bb; run; ods trace on; ods rtf style=snow file='/folders/myfolders/Parametric & Non-Parametric Hypothesis Testing.rtf'; title1 'Simple Statistics for Age'; proc means data=pm410.analysis_bb n mean std min max; var RIDAGEYR; run; title1 'Quantiles and Extreme Observations for Ages in Sample'; proc univariate data=pm410.analysis_bb; var RIDAGEYR; ods select quantiles extremeobs; run; title1 'Boxplots of Scores of EPA and DHS Consumed by Depressed and Non-Depressed Individuals'; proc npar1way data=pm410.analysis_bb wilcoxon; class depbinary; var EPA DHA; ods graphics on; ods select WilcoxonBoxPlot; run; ods rtf close; Thanks again!
... View more