输入搜索字词或模块,类或函数名称。
Index.
union
如果可能,形成两个Index对象的并集,并排序。
例子
>>> idx1 = pd.Index([1, 2, 3, 4]) >>> idx2 = pd.Index([3, 4, 5, 6]) >>> idx1.union(idx2) Int64Index([1, 2, 3, 4, 5, 6], dtype='int64')