Previous PageNext Page

Example 1: Mathematical Transformations
There are a huge number of mathematical transformations available in the data step in SAS.
DATA TRANSFRM;
SET HOSP;
LOGLOS = LOG (LENGTH);
XPROP = ARSIN ( SQRT (PROP));

Previous PageTable Of ContentsNext Page