Getting Started with SAS Enterprise Miner

Q: One site visitor added this comment to his feedback form:
I am trying to find the answer to a simple question about getting started with Enterprise Miner 6.1.A: Visit the product page for SAS Enterprise Miner.

What will you find on the product…

SAS DIM function – Counting the elements in an array

The DIM function returns the number of literal elements in an array. It functions against multi-dimensional arrays as well as one-dimensional arrays. 1-dimensional array example DIM(array_name) Multi-dimensional array examples DIM(m_array) -> returns the number of elements in the first dimension of the array DIM5(m_array) -> returns the number of elements in the 5th dimension of […]

SAS Job Searching

Where do you search for SAS jobs? I have been lucky during the downturn and stayed employed, but I know there are a lot of others out there who haven’t been as fortunate. When I did look for a job I generally used dice.com, but thatwas mainly out of …

Advances in Searching

UPDATE:
The advanced search functionality is now production on support.sas.com. It is available at support.sas.com/search. You can also access it by selecting the search button when the search field is empty. Links to advanced search will start…

AUC calculation using Wilcoxon Rank Sum Test

Accurately Calculate AUC (Area Under the Curve) in SAS for a binary classifier rank ordered data

In order to calculate AUC for a given SAS data set that is already rank ordered by a binary classifier (such as linear logistic regression), where we h…

SAS DIF function – Comparing previous records

The SAS DIF function is another useful tool for operating on previous records. Lets say you want to know the difference in the last year’s revenue and this year’s revenue. Here is the data: Year          Revenue 2001           10,000 2002          30,000 2003          60,000 2004          100,000 data revenue1; set revenue; Rev_increase=dif1(revenue); run; Year          Revenue         Rev_increase 2001           10,000         […]