|
Chapter Contents |
Previous |
Next |
| Working with Time Series Data |
The EXPAND procedure provides a convenient way to transform series. For example, the following statements add variables for the logarithm of AIR and the logistic of SHARE to data set A:
proc expand data=a out=a method=none;
convert air=logair / transform=( log );
convert share=lshare / transform=( / 100 logit );
run;
See Table 11.1 in Chapter 11 for a complete list of transformations supported by PROC EXPAND.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.