Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,13 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
Data type for the output Series. If not specified, this will be
inferred from `data`.
See the :ref:`user guide <basics.dtypes>` for more usages.
name : str, default None
Sets the name of the array/ series. Can be called with Series.name
copy : bool, default False
Copy input data.
fastpath : bool, default False
Internally used to prevent the over-parsing data format/ type which
is otherwise required by external calls (such as user calls)
"""

_metadata = ["name"]
Expand Down