checkin of 0.3.0
[pspp-builds.git] / tests / filter.stat
1 title 'Test FILTER'.
2
3 data list /x 1-2.
4 begin data.
5 1
6 2
7 3
8 4
9 5
10 6
11 7
12 8
13 9
14 10
15 end data.
16 compute filter_$ = mod(x,2).
17 filter by filter_$.
18 list.
19 compute filter_$ = 1 - filter_$.
20 list.
21