I need to sort a data frame by date in R. The dates are all in the form of \"dd/mm/yyyy\". The dates are in the 3rd column. The column header is V3. I have seen how to s
If you have a dataset named daily_data:
daily_data
daily_data<-daily_data[order(as.Date(daily_data$date, format="%d/%m/%Y")),]