Add skiprows parameter to docstring.

This commit is contained in:
ljnsn 2022-11-16 00:17:30 +01:00
parent 5df67a728a
commit 2b87c80b65
1 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,8 @@ def read_ods(file_or_path, sheet=1, headers=True, columns=None, skiprows=0):
If `True`, then the first row is treated as the list of column names. If `True`, then the first row is treated as the list of column names.
columns : list, default None, optional columns : list, default None, optional
A list of column names to be used as headers. A list of column names to be used as headers.
skiprows : int, default 0
The number of rows to skip before starting to read data.
Returns Returns
------- -------