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

Hey everyone, I have written some codes to calculate the P_margin for 4 different years. the code and the results are shown below. But I would like to have S for year 1 eq to 1. How can I modify this code ?

 

Thanx so much 🙂

Capture.PNG

 

 

data B;                                                                                                                                      
   S=1;                                                                                                                                      
   P=0.02;                                                                                                                                   
      do year=1 to 4;                                                                                                                        
        S=S*(1-P);                                                                                                                           
        P_marg=S*P;                                                                                                                          
      output;                                                                                                                                
 end;                                                                                                                                        
run;                                                                                                                                         
       
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisBrooks
Ammonite | Level 13

Try this

 

data B;                                                                                                                                      
	S=1;                                                                                                                                      
	P=0.02;  
   
	do year=1 to 4;  
		if year=1 then s=1;
		else S=S*(1-P);                                                                                                                           
		P_marg=S*P;   
		output;
	end;                                                                                                                                        
run;                                                                                                                                         
       

View solution in original post

3 REPLIES 3
ChrisBrooks
Ammonite | Level 13

Try this

 

data B;                                                                                                                                      
	S=1;                                                                                                                                      
	P=0.02;  
   
	do year=1 to 4;  
		if year=1 then s=1;
		else S=S*(1-P);                                                                                                                           
		P_marg=S*P;   
		output;
	end;                                                                                                                                        
run;                                                                                                                                         
       
PeterClemmensen
Tourmaline | Level 20

How about simply

 

data B;
   S=1;P=0.02;Year=1;P_marg=S*P;output;
      do year=2 to 4;
        S=S*(1-P);
        P_marg=S*P;
      output;
 end;
run;
Astounding
PROC Star

There's another way to interpret your request.  It's possible you want exactly the same numbers you got from your original program, but with S=1 on the first observation.  For that:

 

data B;

  S=1;

  P=0.02;

  do year=1 to 4;

     S=S*(1-P);

     if year=1 then replacement_S=1;

     else replacement_S = S;

     P_marg = S * P;

     output;

  end;

  drop S;

  rename replacement_S = S;

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
  • 3 replies
  • 1233 views
  • 6 likes
  • 4 in conversation