I have a date variable in my data frame, but skim(df) will output the date variable as character variable. How do I specify in the code that it needs to recognize the date, and output range of the date variable?
df = data.frame(date = c( "2/3/2021","2/4/2022","2/5/2019"), x= c(1,4,5), y = c(1909,1902,19092))
Also, is the only way to correct the variable types so skim() recognize the correct variable type is by as.factor(df$column) or as.numeric(df$column2) before applying the skim() or skim_with()?
Thank you.