:mod:`memote.experimental.tabular` ================================== .. py:module:: memote.experimental.tabular .. autoapi-nested-parse:: Modules related to reading and writing files. .. !! processed by numpydoc !! Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: memote.experimental.tabular.read_tabular .. function:: read_tabular(filename, dtype_conversion=None) 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. .. !! processed by numpydoc !!