format_time | R Documentation |
Process column Time of df_data and transform the time in hh:mm:ss format to hours or minutes.
format_time(df_data, time_format = NULL)
df_data |
dataframe |
time_format |
character value "hours" or "minutes" to indicate whether the the format is in hours or in minutes. |
the input dataframe whit the column Time formatted.
#Load example dataframe data_file <- system.file("extdata", "test_spectramax_data_1.txt", package = "mpxtractor") df_spectramax_outdata_1 <- mpxtractor::read_spectramax_data(data_file) # format time df <- mpxtractor::format_time(df_spectramax_outdata_1) # Time transformed df
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.