BookmarkSubscribeRSS Feed
j4copo
Fluorite | Level 6

Hello everybody,

here it is my first ever loggin into the sas community and my first question. I am a really newbie of SAS then thanks in advance for all the help you will be able to give me. My problem is the following:

In my dataset I have a variable measuring some kinf of exposure for each instance,

ID    Exposure

1     0.45

2     0.56

3     1.46

...    ....

100  0.34

Let's say the total exposure is 35.2, I need to add a new column to this dataset  measuring the relative exposure for each instance, that is:

ID    Exposure    Relative_exposure

1     0.45            0.45/35.2

2     0.56            0.56/35.2

3     1.46            1.46/35.2

...    ....              ....

100  0.34            0.34/35.2

I am sure this is pretty simple, but I am facing problems using with the proc sql.  thanks for your help!

Jacopo

1 REPLY 1
ChrisHemedinger
Community Manager

Something like this perhaps?

data have;

length ID $ 3 Exposure 8;

input ID Exposure;

datalines;

1     0.45

2     0.56

3     1.46

100   0.34

run;

proc sql ;

create table want as select

ID,

Exposure,

exposure/sum(exposure) as relative_exposure

from have;

quit;

Hint: next time post the question in one of the specific forums, such as .

Chris

Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.

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
  • 3679 views
  • 1 like
  • 2 in conversation