Closed joethorley closed 4 years ago
Some example code - needs digits argument adding to main function
time_to_character <- function(time) { time <- tmr_round(time, digits = 3) msecs <- as.numeric(time) - floor(as.numeric(time)) msecs <- formatC(msecs, digits = 3, format = "f") msecs <- substr(msecs, 2, 5) time <- tmr_floor(time) time <- paste0(time, msecs) time }
done
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue and link to this old issue if necessary.
Some example code - needs digits argument adding to main function