I have a data frame in R with the week of the year that I would like to convert to a date. I know I have to pick a year and a day of the week so I am fixing those values at
Another option with lubridate
lubridate
lubridate::parse_date_time(paste(2014, df$Week, 'Mon', sep="/"),'Y/W/a')