When a csv contains the character '@', csvkit does not recognize dates
Here is my example file (test.csv):
name,email,date
"b","example@somemail.de","03/04/2023"
"a","example@someothermail.de",05/03/2023"
When I run $ csvstat test.csv
, the type of data for date
is Text
.
What can I do to make csvkit recognize the data type of my date columns?
Thank you for your help!