⬅︎ Back to Rust > Go > Python ...to parse millions of dates in CSV files
As per the pandas documentation, using "infer_datetime_format=True" with pd.read_csv can increase the parsing speed by 5-10x
What about pandas python module. pd.read_csv('my file.csv', parse_dates = ["date_column_name"])
Comment
As per the pandas documentation, using "infer_datetime_format=True" with pd.read_csv can increase the parsing speed by 5-10x
Parent comment
What about pandas python module. pd.read_csv('my file.csv', parse_dates = ["date_column_name"])