I want to convert
myDate=as.character("2017/02")
which is in the format year/week to a date that is the first day of this week. So I tried:
print(as.POSIXct(myDate,format="%Y/%U"))
However, this gives me
[1] "2017-05-03 CEST"
which is certainly not the first day of the second week in 2017.
Question: How do I need to change as.POSIXct(myDate,format="%Y/%U")
in order to make it work as described above?