|
REPLICATED STACKName:
That is, the data is the form
The REPLICATED STACK command will convert this to
X1(1) 1 LAB(1)
. . .
X1(n) 1 LAB(n)
X2(1) 2 LAB(1)
. . .
X2(n) 2 LAB(n)
...
Xk(1) k LAB(1)
. . .
Xk(n) k LAB(n)
<SUBSET/EXPCEPT/FOR qualification> where <x1> ... <xk> is a set of one or more response variables; <lab> is the first group-id variable (often a lab-id); <y> is the variable to contain <x1> ... <xk> in a single response variable; <matid> is the variable that contain the value of the second group-id variable (i.e., the column number); <labid> is the variable that contain the value of the first group-id variable (i.e., the value of <lab>); and where the <SUBSET/EXCEPT/FOR qualification> is optional.
SKIP 25
READ GLUCOSE2.DAT LAB X1 TO X5
.
LET Y MATID LABID = REPLICATED STACK X1 X2 X3 X4 X5 LAB
.
E691 INTERLAB Y MATID LABID
Date created: 4/19/2005 |