This is a question about the order in which two operations occur when the Pandas read_excel
function is called. (Although this would also apply to other read_X
type functions such as read_csv
.)
The read_excel
function takes two arguments of interest
skiprows
headers
In this case, I pass a list of integers to headers
to create a multiindex.
My question is, does the skiprows
operation occur before headers
is used to set the headers?