I have some legacy code, that uses parameter '16' in 'pandas.ExcelFile.parse' function:
xls_file = pd.ExcelFile(xls_file_path)
df = xls_file.parse('16')
Using the above or just this:
df = xls_file.parse()
returns similar dataframes with all the columns from Excel file. The only difference is that in the last case dataframe has more records then in the first case.
What does "parse('16')" mean? Can not deduce this from pandas docs.