Currently, half-hour slots such as "08:30" may not be correctly reflected. The suggestion is to add in a rounding mechanism and a helpful message so they get moved to the say, "08:00" in this example.
|
start_hour <- as.numeric(gsub(pattern = "00$", replacement = "", x = start_hour)) |
|
end_hour <- as.numeric(gsub(pattern = "00$", replacement = "", x = end_hour)) |
Currently, half-hour slots such as "08:30" may not be correctly reflected. The suggestion is to add in a rounding mechanism and a helpful message so they get moved to the say, "08:00" in this example.
wpa/R/workpatterns_classify_bw.R
Lines 112 to 113 in 3bf8610