Hello,
I would like to calculate the subtraction of n and n-1
data table;
input n;
cards;
15
24
8
9
2
;
run;
and get in a table
N S
15 .
24 9
8 -16
9 1
2 -7
Thanks for your help
data table;
input n;
cards;
15
24
8
9
2
;
run;
data want;
set table;
if _n_ ne 1 then s=n - lag(n);
run;
Just add:
s = n - lag(n);
//Fredrik
data table; input n; cards; 15 24 8 9 2 ; run; data want; set table; s=dif(n); run;
data want;
set table;
want=n-lag(n);
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.