memote.experimental.tabular

Modules related to reading and writing files.

Module Contents

Functions

read_tabular(filename, dtype_conversion=None) Read a tabular data file which can be CSV, TSV, XLS or XLSX.
memote.experimental.tabular.read_tabular(filename, dtype_conversion=None)[source]

Read a tabular data file which can be CSV, TSV, XLS or XLSX.

Parameters:
filename : str or pathlib.Path

The full file path. May be a compressed file.

dtype_conversion : dict

Column names as keys and corresponding type for loading the data. Please take a look at the pandas documentation for detailed explanations.

Returns:
pandas.DataFrame

The data table.