I have times in the format YYYY.week:
x <- c("2016.49", "2016.50", "2016.51", "2016.52", "2017.01", "2017.02", "2017.03", "2017.04", "2017.05")
Is there a way to create the convert it to date variables like this (date is not true, but that's the desired format):
as.Date(x[1])
"2017-02-01"