Hi I have a SGPLOT as a PNG file, and a proc tabulate as an PNG file.
I would like to put these to as ONE png file, but not PDF. I tried to do it with PDF it worked - but i have to put it in an email (not an attachement) an it did not work with a PDF.
Is it possible to merge to png's to oone?
PROC TABULATE data=metode_count ;
CLASS new1 method;
var count;
table new1 = '' all={label='Total'}, method='' * count = '' * sum=''/row=float misstext='0';
RUN;
ROC SGPLOT DATA = Merged_1 PCTLEVEL=GROUP NOBORDER NOWALL NOCYCLEATTRS ;
format dato ddmmyy.;
VBAR method/GROUP = days stat= percent NOOUTLINE;
TITLE 'An';
keylegend / title="";
XAXIS DISPLAY=(NOLABEL);
YAXIS DISPLAY=(NOLABEL);
FORMAT days days.;
styleattrs DATACOLORS=('#CBE5A1' '#FFFF00' mistyrose firebrick );
run;
the tabel should be under the sgplot in a PNG file