projects
/
pspp
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
checkin of 0.3.0
[pspp]
/
tests
/
lag.stat
1
title 'Test LAG'.
2
3
data list /w 1.
4
begin data.
5
1
6
2
7
3
8
4
9
5
10
end data.
11
12
compute x=lag(w,1).
13
compute y=lag(x).
14
compute z=lag(w,2).
15
list.
16