When I read the Excel sheet, there was an obstructive character in the first line, so the column name was just "Unnamed ...".
To get as data from the second line
As soon as I thought, I found the Qiita article of my predecessor. The following is an excerpt from that article.
Use pandas's skiprows
to skip the first unwanted part and load the Excel file.
df = pd.read_excel(excel_file_path, skiprows=2, header=[0, 1])
Recommended Posts