ordeq_pandas
PandasCSV
dataclass
¶
Bases: IO[DataFrame]
IO to load from and save to CSV data using Pandas. Calls
pd.read_csv and pd.write_csv under the hood.
Example:
1 2 3 4 5 6 | |
Load behaviour is configured by with_load_options:
1 2 3 | |
Save behaviour is configured by with_save_options:
1 2 3 | |
PandasExcel
dataclass
¶
Bases: IO[DataFrame]
IO to load from and save to Excel data using Pandas. Calls
pd.read_excel and pd.to_excel under the hood.
Example usage:
1 2 3 4 5 | |
Load behaviour is configured by with_load_options:
1 2 3 4 5 6 | |
PandasParquet
dataclass
¶
Bases: IO[DataFrame]
IO to load from and save to PARQUET data using Pandas. Calls
pd.read_parquet and pd.write_parquet under the hood.
Example usage:
1 2 3 4 5 | |