引数とそのn番目のラグの差分を返します。
数値の定数、変数または式を指定します。
ラグ数を指定します。
data two; input X @@; Z=lag(x); D=dif(x); datalines; 1 2 6 4 7 ; proc print data=two; run;