All:
I have SAS Code below, and upon SAS Job Execution, it doesn't render sgplot image.
ods graphics on / outputfmt=png;
ODS HTML style=HTMLBlue file=_webout gpath= _ODSOPTIONS = options(BITMAP_MODE='inline');
proc sgplot data=xxx ;
title; footnote;
by year;
xaxis type=linear min=&min_y. max=&max_y. values=(&min_y. to &max_y. by 1);
series x=time y=estrips / name="mrfss" lineattrs=(thickness=1.85 color=black) markers markerattrs=(size=3.5px color=black) break;
series x=time y=lower_eff / name="mrfss_ci" lineattrs=(thickness=1.7 pattern=ShortDash color=ligr) break legendlabel="95% Confidence Interval" markers markerattrs=(symbol=x size=4px color=gray);
series x=time y=upper_eff / lineattrs=(thickness=1.7 pattern=ShortDash color=ligr) break legendlabel=" " markers markerattrs=(symbol=x size=4px color=gray);
yaxis offsetmin=0 ;
run;
ods html close;
ods graphics off;
I am getting ...When I right click on the image, it can be open in another tab, and it shows the image.
Some questions and considerations:
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.