ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Horizontal Stacked Bar (3D)") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.5 h=23pt "Horizontal Stacked Bar"; title2 color=gray33...
proc sgplot data=my_data noautolegend; styleattrs datacolors=(cx9999ff cx993366); hbar category / response=amount stat=sum group=series /*groupdisplay=cluster grouporder=descending*/ dataskin=sheen /*
ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot 100% Stacked Horizontal Bar") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.5 h=23pt "100% Stacked Horizontal Bar"; title2 color=gr...
ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot 100% Stacked Horizontal Bar (3D)") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.5 h=23pt "100% Stacked Horizontal Bar"; title2 col...
proc sgplot data=my_data noautolegend pad=(left=10% right=15%); label catpct='PERCENT'; styleattrs datacolors=(cx9999ff cx993366 cxffffcc); hbar category / response=catpct stat=sum group=series /*barwidth=.6*/ dataskin=sheen /*
ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Bubble Plot") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap;
proc sgplot data=my_data aspect=1 noautolegend; styleattrs datacolors=(cx9999ff cx993366); bubble x=x y=y size=value / group=series proportional bradiusmax=70px lineattrs=(color=gray33); yaxis values=(0 to 3 by 1) label='Y Axis' labelattrs=(size=16pt weight=bold color=gray33) valueattrs=(s...
ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Bubble Plot (3D)") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.0 h=23pt "Bubble Plot"; title2 color=gray33 ls=0.5 h=17pt "With 3D...
proc sgplot data=my_data aspect=1 noautolegend; styleattrs datacolors=(cx9999ff cx993366); bubble x=x y=y size=value / group=series proportional bradiusmax=70px lineattrs=(color=gray33) /*transparency=.5*/ dataskin=sheen; yaxis values=(0 to 3 by 1) label='Y Axis' labelattrs=(size=16pt weigh...
ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Bubble with Transparency") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.0 h=23pt "Transparent Bubbles"; proc sgplot data=my_data ...