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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 1 reply
  • 752 views
  • 0 likes
  • 2 in conversation