From fbe63af20be0fc0ccb95c88231bdc4177a739843 Mon Sep 17 00:00:00 2001 From: Shiyang Huang Date: Fri, 16 Aug 2019 19:46:19 -0500 Subject: [PATCH] added documents --- pandas/core/series.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/core/series.py b/pandas/core/series.py index 3f04970ee4e58..da62985019f4d 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -170,8 +170,14 @@ 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 ` for more usages. + name : str + This is the variable name of the series. If it in a DataFrame, the column + will be named according to this name parameter. + copy : bool, default False Copy input data. + + fastpath: internal paraemter """ _metadata = ["name"]