pd.read_excel¶
pandas.read_excel
- output dataframe cannot be parallelized automatically yet.
- only arguments
io
,sheet_name
,header
,names
,comment
,dtype
,skiprows
,parse_dates
are supported. io
should be a string and is required.- Either
names
anddtype
arguments should be provided to enable type inference, orio
should be inferrable as a constant string. This is required so bodo can infer the types at compile time, see compile time constants sheet_name
,header
,comment
, andskiprows
should be constant if provided.names
andparse_dates
should be constant lists if provided.dtype
should be a constant dictionary of strings and types if provided.