BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Khaladdin
Quartz | Level 8

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!

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16
data have;
input Time Value;
 stddev=std(value,lag(value));
cards;
1 25
2 32
3 23
4 26
;
Thanks,
Jag

View solution in original post

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16
data have;
input Time Value;
 stddev=std(value,lag(value));
cards;
1 25
2 32
3 23
4 26
;
Thanks,
Jag
Khaladdin
Quartz | Level 8
Many thanks. Works well!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 689 views
  • 1 like
  • 2 in conversation