1
I have a df that contains negative times, for example:
-1:-14:-56
I would like to take all times that were less than 00:00:00 and put 00:00:00 in place.
I am currently doing a very manual job in replacing these objects:
df041[,1:61][df041[,1:61]=="-1:-38:-1"] <- "00:00:00"
df041[,1:61][df041[,1:61]=="-1:00:-33"] <- "00:00:00"
df041[,1:61][df041[,1:61]=="-8:-57:-54"] <- "00:00:00"
Does anyone have any idea how to do that?
Perfect! Thank you so much. :)
– Layla Comparin