I have a simple, but tricky question in R. How do I convert numeric values given in "minutes" or "hours" to time format in HH:MM? I have been looking for solutions, but not yet found one.
Let's say I have a vector c(100, 563, 210), and my desired output would be "1:40, 9:23, 3:30", since the numbers in the vector are given in minutes.
Thanks in advance!