Excel
Excel reader for Spark
Note
Ensure the 'excel' extra is installed before using this reader. Default implementation uses openpyxl as the engine for reading Excel files. Other implementations can be used by passing the correct keyword arguments to the reader.
See Also
- https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_excel.html
- koheesio.pandas.readers.excel.ExcelReader
koheesio.pandas.readers.excel.ExcelReader #
Read data from an Excel file
Attributes:
header
class-attribute
instance-attribute
#
header: Optional[Union[int, List[int]]] = Field(
default=0,
description="Row(s) to use as the column names",
)