/* test data */
data one;
do datetime = '04jun2000:22:30'dt to '04jun2004:00:00'dt by 300;
output;
end;
format datetime datetime.;
run;
/* remove any record between Fri 10:30pm and Sun 11:00pm, exclusive */
data two;
set one;
select(weekday(datepart(datetime)));
when(6) if timepart(datetime) < '22:30't then output; /* fri */
when(7) ; /* do nothing on sat */
when(1) if '23:00't < timepart(datetime) then output; /* sun */
otherwise output;
end;
run;
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.