I'm trying to change my column "Week" to the date format %d/%m/%Y. I first convert the column type to date by doing mutate (Week = as.Date(Week))
and then I do mutate(Week = format(as.Date(Week), "d%/%m/%Y"))
which does the job, however when I plot it as a graph I can't have the dates in chronological order because the column Week has become of type character.
Is there any way I can get my dates to be %d/%m/%Y and be plotted in chronological order?
Thanks :)