COMPMORT.HTML
Explanation of compmort.dat
Units:
English
This file contains heights for seedlings in the
competition mortality comparative study established in 1998. This study was closed in 1999 because
extreme droughts caused high mortality of the seedlings in both 1998 and
1999.
Lines:
1296
Variables:
3
Columns:
1. rn - row number (1-36)
2. tn - tree number
3. ht - seedling height in feet (1998)
Example:
1
12 1.1
1 13 1.6
1 14 .
1 15 .
1 16 1.0
1 17 1.2
1 18 1.2
1 19 .
1 20 .
The following code
can be used to input compmort.dat into SAS:
data compmort ; infile 'c:/compmort.dat' ; input row tree ht98 ;
run ;