This function converts a given time (in seconds) into a easy readable format with days, hours, minutes, or seconds.
Examples
library(tools4watlas)
atl_format_time(3600)
#> [1] "1 hours"
atl_format_time(c(120, 3600, 86400))
#> [1] "2 min" "1 hours" "1 days"