Consider the following example
data <- data_frame(time = c(ymd_hms('20160201 08:10:53'),
ymd_hms('20160202 08:10:53'),
ymd_hms('20160203 08:10:54'),
ymd_hms('20160204 08:10:54'),
ymd_hms('20160205 08:10:55')),
value = c(1,1,1,2,2))
> data
# A tibble: 5 × 2
time value
<dttm> <dbl>
1 2016-02-01 03:10:53 1
2 2016-02-02 03:10:53 1
3 2016-02-03 03:10:54 1
4 2016-02-04 03:10:54 2
5 2016-02-05 03:10:55 2
I want to aggregate this dataframe so that I can get the mean of value
for at a given hour-minute-second across all days in my data.
In other words, I can do
> data %>% group_by(time_agg = paste(hour(time), minute(time), second(time))) %>%
+ summarise(mean = mean(value))
# A tibble: 3 × 2
time_agg mean
<chr> <dbl>
1 3 10 53 1.0
2 3 10 54 1.5
3 3 10 55 2.0
Here is my problem:
I need to plot this data (x axis = time, y = mean) but time_agg
is a character! Is there a way to make R (ggplot) understand these are hours?
You can create a numeric column based on the
hms
as the x axis breaks and another column formatted as%H:%M:%S
as labels to plot this in a manual way. Directly usedifftime
as x axis is difficult: