July 2018
Beginner
536 pages
12h 32m
English
Solutions to Odd-Numbered Exercises
This SAS file contains the solutions to all the odd-numbered problems in the text: Learning SAS by Example: A Programmer’s Guide, 2nd edition.
You need to modify any libname and infile statements so that they point to the appropriate folder on your computer. The simplest way to convert all the libname and infile statements in this file is to find the string:
c:\books\learning
and replace it with the folder where you placed you SAS data sets and text files. If you are storing your SAS data sets and text files in separate places you will need to search separately for libname and infile statements and make changes appropriately:
libname learn 'c:\books\learning';
options fmtsearch=(learn);