Skip to main content

Module io

Module io 

Source
Expand description

CSV / Parquet I/O and option types.

Structs§

CsvReadOptions
I/O option types. Options for reading CSV files.
ParquetReadOptions
I/O option types. Options for reading Parquet files.

Functions§

read_csv
CSV I/O helpers. Read a CSV file eagerly into a DataFrame using default CsvReadOptions.
read_csv_with_options
CSV I/O helpers. Read a CSV file eagerly into a DataFrame using the provided options.
read_parquet
Parquet I/O helpers. Read a Parquet file eagerly into a DataFrame using default ParquetReadOptions.
read_parquet_with_options
Parquet I/O helpers. Read a Parquet file eagerly into a DataFrame using the provided options.
write_csv
CSV I/O helpers. Write a DataFrame to a CSV file (currently always includes a header row).
write_parquet
Parquet I/O helpers. Write a DataFrame to a Parquet file.