Uncategorized

Kathy Council 4
SAS eBooks for global customers

SAS Publications has been working hard to convert our most popular titles to eBooks. We believe that eBooks are particularly important for our customers outside the US because of shipping costs, import fees, and the time it takes for you to obtain your books. Benefits to reading eBooks: eBooks are

Shelly Goodin 3
13 most viewed SAS documentation titles in 2013 - to date

We've analyzed traffic to SAS Documentation pages and these 13 titles are leading the list as the first quarter winds down.    The top 13 of 2013, thus far SAS 9.2 Language Reference: Dictionary, Fourth Edition Base SAS 9.2 Procedures Guide SAS/STAT 9.2 User's Guide, Second Edition Base SAS 9.2 Procedures Guide: Statistical Procedures, Third

Jim Simon 0
Coding in the fast lane with data-driven macro calls

The simple PRINT macro below prints a selected dataset: %macro print(data=&syslast,obs=5); proc print data=&data(obs=&obs); title "%upcase(&data)"; run; %mend print; Suppose you want to print every dataset in the library.  Would you enjoy typing a macro call for every dataset in the library? Only if you enjoy coding in the slow

1 102 103 104 105 106 202