code Hi guys,
I was wondering if anyone knew how to create a new variable by performing a simple mathematical operation on an existing column.
I've shown the operation im trying to do in the NEW COLUMN):
EXISTING COLUMN NEW COLUMN
-1
-5 (-5) - (-1)
7 ( 7) - (-5)
-3 (-3) - ( 7)
2 etc...
9
4
1
I basically need to create a new column that subtracts existing observation #1 from #2, existing observation #2 from #3, and so on...
Any ideas as to how I can write a code for this?
Thanks in advance.
data want;
set your_dataset;
new=EXISTING_ COLUMN-lag(EXISTING_ COLUMN);
run;
Also note ... we use LAG quite often, so often that we might forget about:
data want;
set your_dataset;
new_column = dif(EXISTING_COLUMN);
run;
That is so true. Thank you! - Linlin
Thank you guys so much, I appreciate the help.
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.