CROSSTABS: Add significance of correlations in symmetric measures.
[pspp.git] / examples / grid.sps
blobea7f9d7454e65d3637e7feb08d39103dc8b59873
1 COMMENT -*-pspp-*- .
3 COMMENT This program is useful for testing the behaviour of the Data and Variable Sheets.
5 input program.
6 vector var(500 F8.3).
7 loop #c = 1 to 1000.
8 loop #v = 1 to 500.
9 compute var(#v) = #v + #c / 1000.
10 end loop.
11 end case.
12 end loop.
13 end file.
14 end input program.
16 variable label var1 'First variable' var2 'Second variable' var3 'Third variable'.
18 save outfile='grid.sav'.
20 execute.