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 = in...
↧