I have a very large excel file and I'd like to only load the first 100 rows. It seems that pandas doesn't do this well, as it takes about 10 seconds to load in the following command:
pd.read_excel('excel/BigFile.xlsx', nrows=100)
It seems to take the same amount of time as not even passing in the nrows param at all. Is there a way to "quickly" read the first 100 rows of an excel file? If not in pandas, are there other tools that can do this better?