当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pandas.Index.difference用法及代码示例


用法:

final Index.difference(other, sort=None)

返回索引元素不在 other 中的新索引。

这是两个 Index 对象的集合差。

参数

other索引或array-like
sort假或无,默认无

是否对结果索引进行排序。默认情况下,尝试对值进行排序,但任何来自不可比较元素的 TypeError 都会被 pandas 捕获。

  • 无:尝试对结果进行排序,但从比较不可比较的元素中捕获任何类型错误。

  • False:不对结果进行排序。

返回

difference index

例子

>>> idx1 = pd.Index([2, 1, 3, 4])
>>> idx2 = pd.Index([3, 4, 5, 6])
>>> idx1.difference(idx2)
Int64Index([1, 2], dtype='int64')
>>> idx1.difference(idx2, sort=False)
Int64Index([2, 1], dtype='int64')

相关用法


注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Index.difference。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。