diff --git a/tech/pandas.wiki b/tech/pandas.wiki index 908cc86..c8dbba0 100644 --- a/tech/pandas.wiki +++ b/tech/pandas.wiki @@ -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