Want to import only certain range of data from an excel spreadsheet (.xlsm format as it has macros) into a pandas dataframe.
Was doing it this way:
data = pd.read_excel(filepath, header=0, skiprows=4, nrows= 20, parse_cols = "A:D")
But it seems that nrows works only with read_csv() ?
What would be the equivalent for read_excel()?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…