Skip to content

Commit 9df5d75

Browse files
committed
DOC: removed reference to unique Index. more docs work will be needed. close #1208 for now
1 parent 9020b9e commit 9df5d75

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pandas/core/series.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -324,11 +324,11 @@ def __new__(cls, data=None, index=None, dtype=None, name=None,
324324
def __init__(self, data=None, index=None, dtype=None, name=None,
325325
copy=False):
326326
"""One-dimensional ndarray with axis labels (including time
327-
series). Labels must be unique and can any hashable type. The object supports
328-
both integer- and label-based indexing and provides a host of methods for
329-
performing operations involving the index. Statistical methods from ndarray have
330-
been overridden to automatically exclude missing data (currently represented as
331-
NaN)
327+
series). Labels need not be unique but must be any hashable type. The object
328+
supports both integer- and label-based indexing and provides a host of methods
329+
for performing operations involving the index. Statistical methods from ndarray
330+
have been overridden to automatically exclude missing data (currently
331+
represented as NaN)
332332
333333
Operations between Series (+, -, /, *, **) align values based on their
334334
associated index values-- they need not be the same length. The result

0 commit comments

Comments
 (0)