Skip to content

Commit

Permalink
Updated user-guide.rst (#838)
Browse files Browse the repository at this point in the history
Updated in Using gspread with NumPy

hearder --> header (with correct spelling of header)
  • Loading branch information
Jayesh Manani committed Feb 17, 2021
1 parent ef175fd commit 7d9e762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ Read contents of a sheet into a NumPy array:
import numpy as np
array = np.array(worksheet.get_all_values())
The code above assumes that your data starts from the first row of the sheet. If you have a hearder row in the first row, you need replace ``worksheet.get_all_values()`` with ``worksheet.get_all_values()[1:]``.
The code above assumes that your data starts from the first row of the sheet. If you have a header row in the first row, you need replace ``worksheet.get_all_values()`` with ``worksheet.get_all_values()[1:]``.

Write a NumPy array to a sheet:

Expand Down

0 comments on commit 7d9e762

Please sign in to comment.