Skip to contents

Given any date from an ISO week ("isoweek") return the date of the first day of the isoweek (a Monday).

Usage

floor_isoweek(date)

Arguments

date

A date.

Value

The date that ends the epidemiological week, as a lubridate::date().

Examples

floor_isoweek(as.Date("2025-03-13")) # rounded to Monday
#> [1] "2025-03-10"
floor_isoweek(as.Date("2025-03-10")) # this is already Monday
#> [1] "2025-03-10"