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?
Answers were Sorted based on User's Feedback
Answer / presha badiyani
use rename option
Data a1;
input A $20 @50 age;
Data b1;
input x b age;
Data c;
set a1 b1(rename age=b1_age);
If age = b1_age;
run;
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / poojavaibhav
Deepak please explain the word functionality in detail.
But if i have to answer above question then i think if you have var that have same name in different dataset and you want to use them both then rename one of the variable and apply condition..
thanks.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Answer / kush
proc sql;
select Variable_name
from Variable_name.DataSet_name;
run;
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / nbohr02
Use a two level name.
Data a1;
input A $20 @50 age;
Data b1;
input x b age;
Data c
If a1.age = b1.age;
| Is This Answer Correct ? | 1 Yes | 9 No |
what does .. meant in sas macros
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.
what is the Population you used in your project, is it ITT or PP?
0 Answers Accenture, Quintiles,
explain about data integrator metadata reports? : Sas-di
how to read the variables in sas? : Sas-administrator
hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?
what is the difference between nodup and nodupkey options? : Sas programming
what is business intelligence? : Sas-bi
what is null hypothesis? why do you consider that?
0 Answers Accenture, Quintiles,
What is the command used to find missing values?
which features do you use to check the data validations and errors? : Sas-administrator