macpie.read_excel#

macpie.read_excel(io, as_collection=False, storage_options=None, engine=None, **kwargs)#

Read an Excel file into a macpie Dataset.

This is the analog of pandas.read_excel(), so read the documentation for that function for descriptions of available parameters, notes, and examples.

Parameters:
as_collectionbool, default False

Whether to parse the Excel file as a macpie.BaseCollection and return the appropriate collection type.

**kwargs

All remaining keyword arguments are passed through to the underlying pandas.ExcelFile.parse() method.

See also

Dataset.to_excel

Write Dataset to an Excel file.

pandas.read_excel

Pandas analog