當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pandas.errors.DuplicateLabelError用法及代碼示例


用法:

exception pandas.errors.DuplicateLabelError

當操作引入重複標簽時引發錯誤。

例子

>>> s = pd.Series([0, 1, 2], index=['a', 'b', 'c']).set_flags(
...     allows_duplicate_labels=False
... )
>>> s.reindex(['a', 'a', 'b'])
Traceback (most recent call last):
   ...
DuplicateLabelError:Index has duplicates.
      positions
label
a        [0, 1]

相關用法


注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.errors.DuplicateLabelError。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。