I want to format my numeric sleep minutes in a data frame to time in R. For example, this is what the data frame looks like:
TotalMinutesAsleep 327
sleep.day.1$TotalMinutesAsleep <- hms(sleep.day.1$TotalMinutesAsleep)
I need a quick and easy solution.
Thx,