Self-assessments for SAS training courses

We all know SAS offers a rich variety of resources that help users to continuously build their skills.  However one of the biggest questions plaguing SAS users is ‘where do I begin’ or ‘what’s next’.  Considering the vast array of options t…

Fat Fingers

I just looked at some code I had written a few months ago. It categorized things based on a bunch of criteria. At the end of the data step I output the categories that did not fit into a definition bucket nicely:if bucket in(12,11,10,7,6,5,4) then ou…

A SAS options viewer for SAS Enterprise Guide

On the heels of the release of the popular SAS macro variable viewer from last month, I’m providing another custom task that I hope will prove just as useful. This one is a SAS options viewer, similar in concept to the OPTIONS window in SAS display manager. You can download […]

Merry Christmas!

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…