All Posts

SAS Events
Viji Iyer 0
Introducing the series!

Appetizers usually play a significant role in ensuring a good restaurant experience…right? A good appetizer whets your appetite and gets you psyched and excited for the main course! This series of blog posts aims to do just that…whet your appetite for what’s in store at SAS Global Forum. In the

Advanced Analytics
Rick Wicklin 0
When sharks attack!

The Junk Chart blog discusses problems with a chart which (poorly) presents statistics on the prevalence of shark attacks by different species. Here is the same data presented by overlaying two bar charts by using the SGPLOT procedure. I think this approach works well because the number of deaths is

Advanced Analytics
Rick Wicklin 0
The module that vanished

Recently, I needed to detect whether a matrix consists entirely of missing values. I wrote the following module: proc iml; /** Module to detect whether all elements of a matrix are missing values. Works for both numeric and character matrices. Version 1 (not optimal) **/ start isMissing(x); if type(x)='C' then

1 673 674 675 676 677 689