Update for 22-03-22 19:45

This commit is contained in:
Tyler Perkins 2022-03-22 19:45:01 -04:00
parent b12fdb5c39
commit 920c6ebeda
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@ Pandas is the python data analysis library
=== Open a spreadsheet ===
`myWorkbook = pandas.read_excel('./path/to/excel/file.xlsx')`
`myWorkbook = pandas.read_excel('./path/to/excel/file.xlsx', skiprows=7)`
This will import the provided file, and skip over the first `7` rows
`myWorkbook.head()` will display the first 5 or so rows of the spreadsheet