We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f93d57 commit 9621fc2Copy full SHA for 9621fc2
pandas/core/series.py
@@ -172,6 +172,11 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
172
See the :ref:`user guide <basics.dtypes>` for more usages.
173
copy : bool, default False
174
Copy input data.
175
+ name: str, default None
176
+ Sets the name of the array/ series. Can be called with Series.name
177
+ fastpath: bool, default False
178
+ Internally used to prevent the over-parsing data format/ type which
179
+ is otherwise required by external calls (such as user calls)
180
"""
181
182
_metadata = ["name"]
0 commit comments