Hi,
I have a quick question about standard deviation in SAS.
Assume that I have the following dataset:
Time Value
1 25
2 32
3 23
4 26
I want to compute standard deviation of between two rows. It implies that I will have the following dataset:
Time Value Stddev
1 25 .
2 32 stddev(25;32)
3 23 stddev(32;23)
4 26 stddev(23;26)
Thanks in advance for help!
data have;
input Time Value;
stddev=std(value,lag(value));
cards;
1 25
2 32
3 23
4 26
;
data have;
input Time Value;
stddev=std(value,lag(value));
cards;
1 25
2 32
3 23
4 26
;
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.