IS THE "COMMENTED" AND THE "NON SCOMMENTED" LINES DOING THE SAME THING IN THE BELOW CODE????
THANKS
data want;
set ints_exts2;
array ins int:;
array outs ext:;
do i = 1 to dim(ins);
if ins(i)^=. and outs(i)^=. then duration=sum(duration,outs(i)-ins(i)) /*UNCOMMENTED*/
*if 2=N(ins(i),outs(i)) then duration=sum(duration,outs(i)-ins(i)); /*COMMENTED*/
end
;
days = datepart(duration);
time = timepart(duration);
hrs=time/(60*60);
Total_vent_hours =days*24+ time/(60*60);
vent_days=Total_vent_hours/24;
run;
Not exactly as the Not missing, ^=., works for character variables while N(variables) requires all of the arguments to be numeric.
If you are dealing with mixed data types you might want CMISS(ins[i], out[i]) = 0
Thanks Reeza.
INS and OUTS arrays contain dates only. Can have missing values.
Wanted toi know if in that case both line output the same results??
Thanks
You could check with:
compare =(ins(i)^=. and outs(i)^=.) = (N(ins(i),outs(i)));
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.