We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47fea80 commit 19ccb4bCopy full SHA for 19ccb4b
pandas/core/series.py
@@ -265,8 +265,11 @@ class Series(base.IndexOpsMixin, NDFrame): # type: ignore[misc]
265
See the :ref:`user guide <basics.dtypes>` for more usages.
266
name : Hashable, default None
267
The name to give to the Series.
268
- copy : bool, default False
269
- Copy input data. Only affects Series or 1d ndarray input. See examples.
+ copy : bool, default None
+ Copy input data. By default, will copy if the input data is a numpy or
270
+ pandas array. Set to False to avoid copying, at your own risk (if you
271
+ know the input data won't be modified elsewhere).
272
+ Only affects Series or 1d ndarray input. See examples.
273
274
See Also
275
--------
0 commit comments