Groups artworks into time periods based on their creation date. Returns a list of data frames, one for each period.

group_by_time_period(artworks)

Arguments

artworks

Data frame with artwork data including created_utc column

Value

Named list of data frames (this_week, this_month, etc.)

Examples

if (FALSE) { # \dontrun{
grouped <- group_by_time_period(recent_works)
this_week_works <- grouped$this_week
} # }