projects
/
pspp
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix assertion for proper Huffman merge pattern: 0 == 1 modulo 1.
[pspp]
/
tests
/
temporary.stat
1
title 'Test TEMPORARY transformation'.
2
3
set echo on/screen on.
4
data list /z 1 x 2.
5
formats x(f3).
6
split file by z.
7
list.
8
begin data.
9
12
10
13
11
14
12
15
13
16
14
23
15
24
16
25
17
26
18
27
19
28
20
end data.
21
compute x=x+1.
22
temporary.
23
compute x=x+1.
24
compute y=x+1.
25
sel if y<7.
26
descriptives x y.
27
list.
28
compute x=x-10.
29
list.