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;

 

?

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
  • 1110 views
  • 0 likes
  • 2 in conversation