I am thinking how you can dynamically change the time duration form (etc 11h11 resembling %Hh%M) to minute form like %M.
I think it is best to maintain the original data form used by EMFIT-QS device.
Data
Name,Time_duration
Leo,11h11
Code
DF <- read.csv("/home/masi/Documents/Data/data.csv", header = T, sep = ",")
str(DF)
Outut
$ Time_duration : Factor w/ 1 level 11h11",..
My proposal
Change data time duration to minutes where second column for specifying units to avoid confusion because non-standard units
Name,Time_duration -, min Leo,671Do not change the standard fields given by
%Hh%M, I would really like to programmatically convert all fields manually to minute presentation%M
R: 3.3.3