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)Named list of data frames (this_week, this_month, etc.)
if (FALSE) { # \dontrun{
grouped <- group_by_time_period(recent_works)
this_week_works <- grouped$this_week
} # }