I cannot get R to format my column as a date, no matter what I do. I have even gone so far as to create a new string of dates separately and use cbind to add these to the dataframe I want them on, but they are still not recognized as a date. R lists the column as "unknown" when I hover over it. I'm not sure what is going on here.
values = seq(from = as.Date("2016-04-8"), to = as.Date("2017-05-30"), by = 'day')
AllChlData<-cbind(AllChlData, NewDate =values)
AllChlData$NewDate <- as.Date(AllChlData$NewDate, "%m/%d/%Y")
Everything combines into my dataframe just fine, everything looks correct in there, but it is just not recognizing as a date no matter what I try. Any ideas?