Is it possible to include the presented syntax or even output the log file when using ODS in PDF using SAS?
For example, provide this simple code:
ods pdf file = "c:\temp\myPDF.pdf"; proc reg data = mydata; model y = x; run; ods pdf close;
I can get the regression output and the accompanying graph. But is it possible to include an attached command like this in the PDF?
proc reg data = mydata; model y = x; run;
source share