We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afcf180 commit f9efd2aCopy full SHA for f9efd2a
pandas/core/series.py
@@ -223,7 +223,9 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
223
name : str, optional
224
The name to give to the Series.
225
copy : bool, default False
226
- Copy input data.
+ Copy input data. If False and the Series returns a `view` of the data,
227
+ the memory location for the values is shared. If False and the Series returns a `copy`
228
+ of the data, the memory location for the values is not shared.
229
230
Examples
231
--------
0 commit comments