I don't know what I'm doing wrong with my date data. A sample of the Date
column in the housing_data
data frame are as follows:
"February 2012" "March 2012" "April 2012" "May 2013" "July 2015" "March 2016"
"May 2016" "April 2017" "July 2017" "October 2017" "December 2017" "February 2018"
I run housing_data$Date <- base::as.Date(housing_data$Date, "%B %Y")
and I get nothing but NA
back as if I have the formatting incorrect. What am I missing?