I have a column of dates as follows,
> mymonth = c('10/2015','11/2016','12/2016')
> data <- data_frame(mymonth)
> data
# A tibble: 3 × 1
mymonth
<chr>
1 10/2015
2 11/2016
3 12/2016
Here, obviously, my month corresponds to a particular month in the year. October 2015, November 2015 and December 2015.
I cannot parse these dates correctly with lubridate
. It is assumed the month correspond to the last business day of the month.
How can I have this variable translated into a date
variable that lubridate
understands?
Thanks~