I have a table, one of the columns is dates in form at 20130109
or YearMonthDay with no spacing.
I'm trying to graph these points, and because of this odd spacing, end up with big gaps in the graph, and thus want to convert these numbers into dates.
I've been trying to use as.Date(as.character(20130107), "%y%m%d")
but that always returns an NA
.