| USING SAS PROGRAMMING TO:
1. Prepare the data set
- The data matrix (values,
variables, observations)
- Variable characteristics
(length, numeric vs character, missing values)
- SAS statements required to read/save permanent/temporary:
- Example programs
2. View the data
- PROC CONTENTS - to obtain
list of variables
- PROC PRINT - to obtain
list of values
- PROC SORT - to sort
the data
- PROC FORMAT - to create
formats for manipulating the data
- for labeling values; used in conjunction with FORMAT
statement (customizing data - see below)
- also used for creating new variables by grouping values;
used in conjunction with PUT statement (creating new variables
- see below)
- Practice Exercises
3. Explore the data
- Numeric statistics
- Frequency tables
4. Manipulate the data
- Basic techniques
- New variables
5. Adding Variables and Observations to Data Sets
6. Data Processing
|