Commit f5edfc7
authored
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_excel.html
While the docs are not clear:
> header int, list of int, default 0
> Row (0-indexed) to use for the column labels of the parsed DataFrame. If
> a list of integers is passed those row positions will be combined into a
> MultiIndex. Use None if there is no header.
`header` should be set to `None` if the spreadsheet contains no header row.
> names array-like, default None
> List of column names to use. If file contains no header row, **then you
> should explicitly pass header=None**.
This change makes `header` optional.
1 parent 0ddc312 commit f5edfc7
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments