I have 2 data sets A & B. Both have a variable called Age in
them, each of them specifying a different functionality.
In my program I use bot these data sets. How do I specify
which Age variable I want to use?
Answer Posted / alok karan
Data a1;
input y age;
Data b1;
input x age;
Data c;
set a1 b1(drop=age);
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which command is used to save logs in the external file?
What is the difference between class statement and by statement in proc means?
how to remove duplicates using proc sql?
What is SAS? What are the functions does it performs?
what are sas bi dashboard components? : Sas-bi
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
What is maximum storage capability of SAS?
How long can a macro variable be? A token? : sas-macro
What is the use of %include statement?
How do you control the number of observations and/or variables read or written?
What are the applications primarily used by business analyst? : Sas-bi
In SAS explain which statement does not perform automatic conversions in comparisons?
Differentiate between sas functions and sas procedures.
How do dates work in sas?
why is a stop statement needed for the point=option on a set statement? : Sas programming