Makefile: Fix spelling of "prerequisites".
[pspp] / doc / examples / flip.sps
1 data list notable list /heading (a16) v1 v2 v3 v4 v5 v6
2 begin data.
3 date-of-birth 1970 1989 2001 1966 1976 1982
4 sex 1 0 0 1 0 1
5 score 10 10 9 3 8 9
6 end data.
7
8 echo 'Before FLIP:'.
9 display variables.
10 list.
11
12 flip /variables = all /newnames = heading.
13
14 echo 'After FLIP:'.
15 display variables.
16 list.