Unfinished Code
*HW 3 - Problem 2;
proc ;
run;
finished code
data lab.oldest_ages;
set lab.main;
OldestMother = .;
OldestFather = .;
if dmage > OldestMother then
OldestMother = dmage;
if dfage < 99 ;
if OldestFather = . or dfage > OldestFather then
OldestFather = dfage;
where dmage ^= . and dfage ^= .;
run;
proc print data= lab.oldest_ages (firstobs = 1 obs=10);
var dmage dfage;
run;
Since the "unfinished code" begins with the word PROC, it looks like you should use a SAS procedure, and not a DATA step.
Take a look at PROC MEANS.
You will need to run it twice (once for the fathers and once for the mothers), because excluding fathers age 99 might exclude an observation needed for processing the mothers.
As @Astounding pointed correctly, you'd have to use procedure (as in the description of you homework 😉).
Although, the data step is incorrect anyway:
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
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.