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…

NOTE: BY Variables in Titles (Golden Oldies)

Whilst the capabilities of SAS software increase markedly from release to release, the core capabilities remain the same. And that means that many hints and tips from years gone by are still valid today. Starting today I’m running a mini-series of tips…

What’s the difference between 0 and -0?

My daughter’s math lessons this year have included the concept of negative numbers (that is, numbers less than zero, not numbers that have a bad attitude). She has used number lines such as this one to help her while she completes her homework: Notice that in this number line, there […]