Calculate average daily value from large data set with R standard format date/times?

13,498

Here's a solution using dplyr and lubridate. First, simplify the date by rounding it down to the nearest day-unit using floor_date (see below comment by thelatemail), then group_by date and calculate the mean value using summarize:

library(dplyr)
library(lubridate)

df %>%
  mutate(date = floor_date(date)) %>%
  group_by(date) %>%
  summarize(mean_X1 = mean(X1))

Using the lubridate package, you can use a similar method to get the average by month, week, or hour. For example, to calculate the average by month:

df %>%
  mutate(date = month(date)) %>%
  group_by(date) %>%
  summarize(mean_X1 = mean(X1))

And by hour:

df %>%
  mutate(date = hour(date)) %>%
  group_by(date) %>%
  summarize(mean_X1 = mean(X1))
Share:
13,498
Patty
Author by

Patty

Updated on June 07, 2022

Comments

  • Patty
    Patty almost 2 years

    I have a dataframe of approximately 10 million rows spanning about 570 days. After using striptime to convert the dates and times, the data looks like this:

              date          X1   
    1 2004-01-01 07:43:00 1.2587 
    2 2004-01-01 07:47:52 1.2585
    3 2004-01-01 17:46:14 1.2586 
    4 2004-01-01 17:56:08 1.2585
    5 2004-01-01 17:56:15 1.2585 
    

    I would like to compute the average value on each day (as in days of the year, not days of the week) and then plot them. Eg. Get all rows which have day "2004-01-01", compute average price, then do the same for "2004-01-2" and so on.

    Similarly I would be interested in finding the average monthly value, or hourly price, but I imagine I can work these out once I know how to get average daily price.

    My biggest difficulty here is extracting the day of the year from the date variable automatically. How can I cycle through all 365 days and compute the average value for each day, storing it in a list?

    I was able to find the average value for day of the week using the weekdays() function, but I couldn't find anything similar for this.

    • RobertMyles
      RobertMyles almost 7 years
      Have you tried df %>% dplyr::group_by(date) %>% summarise(mean(X1)) for the first part? That should give you the average by day. You can use the lubridate package to get the months to do something similar.
  • George Wood
    George Wood almost 7 years
    Also see this answer for calculating the average by date using aggregate, data.table, or xts
  • Patty
    Patty almost 7 years
    Thanks a lot, this is exactly what I was after (both your answer and the one you linked). Cheers!
  • thelatemail
    thelatemail almost 7 years
    Be careful suggesting as.Date(datetime) - as.Date uses the "UTC" timezone for conversions from POSIXct, while the datetime is likely stored in the user's timezone. This can lead to dates at the start or end of periods being attributed the wrong characteristics. E.g. - as.Date(as.POSIXct("2011-01-01",tz="Australia/Sydney"))
  • George Wood
    George Wood almost 7 years
    Thanks for pointing this out, thelatemail. I edited the answer to use floor_date instead, which I believe maintains the existing timezone.
  • Patty
    Patty almost 7 years
    @Thelatemail Ahh this makes sense, I was wondering why I was getting 1 day back from what it was. MUst have been timezone related.
  • Lmm
    Lmm about 5 years
    Can the summarize be expanded to multiple columns here?