I have data that has a columns for year, month, week. How can I convert this to a date with lubridate
. The examples in the documentation use year, month, and day.
lets assume the following data
year month week
2017 1 1
2017 2 35
2017 3 50
how can I use. makedate()
with the above data?