Hello,
I have a dataset ("population") consisting of about 10 000 observations. This dataset contains a variable "CITY", ranged 1 to 79 and a variable "AGE", ranged 0 to 75. In an Excel file, I have a value for each possibilites of these two variables (i.e. 79*76 lines). This variable is in fact a corrected ponderation that I need to assign to the observations of the dataset "population".
I suppose I could a large number of "if then" commands like this:
if city=1 then do;
if age=0 then pond=1.2;
if age=1 then pond=0.9;
...
end;
if city=79 then do;
if age=75 then pond=1.3;
end;
But I guess it's not the more efficient way.
Thanks
Off course there is. Assuming you imported your Excel sheet as a dataset called PONDERATION with columns AGE CITY and POND, the following query will join the two :
proc sql;
create table want as
select population.*, ponderation.pond
from population natural join ponderation;
quit;
PG
Off course there is. Assuming you imported your Excel sheet as a dataset called PONDERATION with columns AGE CITY and POND, the following query will join the two :
proc sql;
create table want as
select population.*, ponderation.pond
from population natural join ponderation;
quit;
PG
It works, thank you.
What means the "natural join" statement?
It means join on the columns with the same name. - PG
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.