isoweek_to_date.Rd
This function converts an ISO year and ISO week number into a date. The date returned corresponds to the first day (Monday) of the specified ISO week.
isoweek_to_date(week, year)
Integer. The ISO week number (1 to 53).
Integer. The ISO year.
A `Date` object representing the first day of the specified ISO week.
if (FALSE) {
isoweek_to_date(week = 15, year = 2023) # Returns the date for the first day of ISO week 15 in 2023
}