proc sgplot data=my_data noautolegend pad=(left=10% right=15%); label catpct='PERCENT'; styleattrs datacolors=(cx9999ff cx993366 cxffffcc); vbar category / response=catpct stat=sum group=series barwidth=.6 dataskin=sheen /*
proc sgplot data=sashelp.heart; heatmap x=weight y=cholesterol; run;
proc sgplot data=b noautolegend; yaxis label='Observed or Predicted'; refline 0.7775 / axis=y label="Plateau" labelpos=min; refline 12.7477 / axis=x label="Join point" labelpos=min; scatter y=y x=x; series y=yp x=x; run;
proc sgplot data=New; scatter x=Minutes y=Prob / group=Group; discretelegend; run;
proc sgplot data=out noautolegend; yaxis values=(-10 to 10 by 5); xaxis values=(-15 to 15 by 5); scatter y=y x=x / group=cluster Markerchar=cluster; by _NJOIN_; run;
title2 'Plot of DENSITY*X=CLUSTER'; proc sgplot data=out; scatter y=density x=x / group=cluster datalabel=_obs_; run;
title2 'Plot of DENSITY*X=CLUSTER with TRACE and THRESHOLD=0.55'; proc sgplot data=out; scatter y=density x=x / group=cluster datalabel=_obs_; run;
proc sgplot data=Children; series x=trail_x y=trail_y/lineattrs=(color="red" pattern=4); scatter x=x y=y/group=off_trail; ellipse x=x y=y/alpha=.05 lineattrs=(color="green" pattern=34); run;
proc sgplot data = bmi; vbar bmi / datalabel; run;
ods listing gpath="/home/mySASData/resources_github/Graph/Distribution/img" image_dpi=200; *---------------------------------------------------; ods graphics / reset = all attrpriority=color border = no width = 600px height = 400px imagename = "density1" imagefmt = png outputfmt = png antial...