I have some raw data where a variable contain value in seconds now for largely time. format is good to have it in HH:MM:SS however there are some values which are large enough to make HH like 200 which when comes as report doesn't seems good so looking some way to have these large seconds to be converted to DAYS HOURS MINS ...thanks for throwing the ideas...
quick'n dirty:
days = int(seconds/86400);
time = mod(seconds,86400);
outvalue = put(days,2.)!!':'!!put(time,time8.);
if substr(outvalue,4,1) = ' ' then substr(outvalue,4,1) = '0';
edit: fixed some minor errors
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.