The OP of this post highlighted the lack of documentation for using the date_format argument in pandas. I would like to format the data into YYYY-MM-DD, not MM/DD/YYYY when using the to_csv command.
I've tried: frame.to_csv(output_dir, index=False, encoding='utf-8', date_format='%Y-%m-%d')
and it is not working, where frame is a DataFrame
The file I'm trying to convert can be found here