Hello all;
I am trying to accomplish two things:
create a table with an underlying (line) graph that accompanies the table to output to PDF through PROC Report. However, the graph & table come from different sources.
Currently, this works except that the graph prints to another page, and way too big. I have attempted to solve this by ysuing the ODS graphics on/width= height= but this has no effect.
So essentially I have my proc report statements:
ODS LISTING CLOSE;
...
Proc Report data=x;
...
endcomp
symbol1 v=dot i=join;
proc gplot data=BASIC_OUTPUT;
where UNIT='y' and date>monthyear;
plot crbsi_rate*moi;
run;
quit;
Second question is that when the graph prints, it does not adhere to the ODS escape character and so the graphic does not print accordingly.
Thank you again for your help...
Lawrence
... View more