I'm trying to understand the following code:
data final_eligibilityfile (drop=dtstart);
merge eligibility_2 (in=a) status (in=b) county (in=c) ;
by PID starting ending;
if a;
run;Two questions:
- What is the purpose of (in=b) and (in=c) if we don't reference b or c later on in the code (?) (as far as I'm aware)
- What does the "if a" mean? Does that mean if a given variable is in a (e.g. "eligibility_2")?
Thank you!
in= variable creates a binary variable that tells you if that input data set contributes to this observation. Correct--if you don't use them, there is no point in making them.
The IF statement is a subsetting IF. If the variable is true (1 in this case) processing is continued and the observation is output.
The code is keeping all observations that come at least in part from the eligibility_2 data set.
in= variable creates a binary variable that tells you if that input data set contributes to this observation. Correct--if you don't use them, there is no point in making them.
The IF statement is a subsetting IF. If the variable is true (1 in this case) processing is continued and the observation is output.
The code is keeping all observations that come at least in part from the eligibility_2 data set.
Creates a Boolean variable that indicates whether the data set contributed data to the current observation.
@cdubs wrote:
I'm trying to understand the following code:
data final_eligibilityfile (drop=dtstart); merge eligibility_2 (in=a) status (in=b) county (in=c) ; by PID starting ending; if a; run;Two questions:
- What is the purpose of (in=b) and (in=c) if we don't reference b or c later on in the code (?) (as far as I'm aware)
- What does the "if a" mean? Does that mean if a given variable is in a (e.g. "eligibility_2")?
Thank you!
Perhaps you should investigate the free online courses and tutorials at https://support.sas.com/edu/elearning.html?ctry=us&productType=library
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.