pyevoc.utils.io#
Input/output helpers.
- pyevoc.utils.io.read_table(path, **kwargs)[source]#
Read a tabular data file into a
pandas.DataFrame.Dispatches to the appropriate pandas reader based on the file extension. Supported formats:
.csv,.tsv/.tab,.xlsx/.xls,.parquet, and.json.- Parameters:
- Returns:
A
DataFramecontaining the file contents.- Raises:
ValueError – If the file extension is not supported.
- Return type:
DataFrame