Merry Christmas!

This post was kindly contributed by SAS ANALYSIS - go there to comment and to read the full post.

Just for fun.


data cars;
   set sashelp.cars;
   length label $10.;
   keep invoice weight enginesize type label;
   if _n_ = 1 then label = 'Merry';
   if _n_ = 50 then label = 'Christmas';
run;

proc sgplot data = cars noautolegend;
   bubble x = invoice y = weight size = enginesize / group = type datalabel = label datalabelattrs=(color=red 
      family="garamond" style=italic size=45 weight= bold) transparency=0.4;
   xaxis max = 80000 label = ' '; yaxis label = ' ' max = 6000;
run;

This post was kindly contributed by SAS ANALYSIS - go there to comment and to read the full post.