parquet offers several advantages over csv particularly when used in combination with duckdb.
duckdb can query directly against parquet instead of having to load the entire file into a dataframe. This is useful as only the required columns are loaded into memory instead of all, as done in csv/pandas combo.
parquet offers several advantages over csv particularly when used in combination with duckdb.
duckdb can query directly against parquet instead of having to load the entire file into a dataframe. This is useful as only the required columns are loaded into memory instead of all, as done in csv/pandas combo.