BookmarkSubscribeRSS Feed
Amalik
Calcite | Level 5

Hi,

 

I have a data as follows and want to create a separate file/ column ,calculating standard deviation of var1 by permno winid and month, any suggestions on how to go about it?

 

permnowiniddatemonthvar1
111-Jan-00Jan-00 
11….31jan00Jan-00 
122-Feb-00Feb-00 
12….28-feb00Feb-00 
231-Jan-00Jan-00 
23….31jan00Jan-00 
242-Feb-00Feb-00 
24….28-feb00Feb-00 
1 REPLY 1
pau13rown
Lapis Lazuli | Level 10

proc univariate data=;

var var1;

by permno winid month;

output out=std std=std;

run;

 

?

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 924 views
  • 0 likes
  • 2 in conversation