The default R date format is "yyyy-mm-dd".
Let say I have dataset
library(data.table)
dt_test <- data.table(
date = c("01.03.2019", "02.03.2019"),
value = c(1, 2))
where "date" is "chr" type.
I'd like to have it as "Date" feature and set default date format as "%d.%m.%Y".
And, also to keep this format for all "ggplot" operations.
Thanks all ahead!