Hello everyone,, I am trying to increase the resolution of the line graph produced to 600dpi. I am not sure where i am making mistakes in my code- The resolution is still 96 dpi. ods rtf file='C:\Users\khetap03\Desktop\Lillirecent\boxplotcreatinine.rtf'image_dpi=600; ods listing style=listing; ods graphics on / width=4.5in height=3.5in; goptions reset=all; symbol1 c=blue v=star h=.8 i=j; symbol2 c=red v=dot h=.8 i=j; symbol3 c=green v=square h=.8 i=j; axis1 order=(50 to 100 by 5) label=( 'Means'); axis2 value=(10 to 100 by 10) label=('Time'); proc gplot data=means1; plot estimate*time=obesity / vaxis=axis1 haxis=axis2; run; quit; ods rtf close; Thank you very much in advance.
... View more