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

please help me understand the meaning of * in front of a variable name such as:
COUNT=events;*numerator;
Total=denominatoryr1;*denominator;

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
shahparth260
Quartz | Level 8

I have imported this code in to SAS. I surely can say this is a comment/ explanation / annotation whoever write this program. 

Please have a look once in to attachment that I am sending with this. I hope it helpful. 

It gives you extra information that which variable you use as Denominator and Nominator for calculation. 

Smiley Happy

 

PS

View solution in original post

8 REPLIES 8
shahparth260
Quartz | Level 8

If you have seen this in Code it should be comment. Can you provide where you have exactly seen ?

PS
Jpham
Calcite | Level 5

here is more code before and after:

data rateyr1;
length range $25;
merge startyr1 finishyr1 numyr1 ;
by year;
range=startyr1||"-"||finishyr1;
events=numyr1;
if events=. then events=0;
pts_at_risk=denominatoryr1;
rate=put((events/denominatoryr1)*100,6.1);

COUNT=events;*numerator;
Total=denominatoryr1;*denominator;
SD=1.96; *1.96 for 95% CI, 1.65 for 90% CI, 0.68 for 50% CI;
obs_agreement=round(Count/Total*100,0.1);

 

shahparth260
Quartz | Level 8
Are you able to send snippets wherever you have seen ??
PS
Jpham
Calcite | Level 5

I inherit this code and I am trying to understand it.  I do not have any snippets.  

shahparth260
Quartz | Level 8

I have imported this code in to SAS. I surely can say this is a comment/ explanation / annotation whoever write this program. 

Please have a look once in to attachment that I am sending with this. I hope it helpful. 

It gives you extra information that which variable you use as Denominator and Nominator for calculation. 

Smiley Happy

 

PS
shahparth260
Quartz | Level 8

You're welcome and thanks for accepting as a solution. 

 

 

PS

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 8 replies
  • 1303 views
  • 0 likes
  • 2 in conversation