checkin of 0.3.0
[pspp-builds.git] / tests / list.stat
1 title 'Test LIST procedure.'
2
3 *** Single lines.
4 remark EOF
5 ----------------------------------------------------------------------
6 Testing use of LIST in single-line cases.
7 ----------------------------------------------------------------------
8 EOF
9 data list file='weighting.data'/AVAR 1-5 BVAR 6-10.
10 weight by BVAR.
11 list.
12 *list /cases=from 5 to 20 by 2 /format numbered.
13 list /format numbered weight.
14
15 *** Multiple lines.
16 remark EOF
17 ----------------------------------------------------------------------
18 Testing use of LIST in multi-line cases.
19 ----------------------------------------------------------------------
20 EOF
21 data list file='list.data' notable /X000 to X126 1-127.
22 *list /cases=from 1 to 25 by 5 /format numbered.
23 list x000 to x030.
24 list /cases=from 1 to 25.
25