On this page
pandas.CategoricalIndex.union
CategoricalIndex.union(other)
[source]-
Form the union of two Index objects and sorts if possible.
Parameters: other : Index or array-like Returns: union : Index Examples
>>> 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')
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.19.2/generated/pandas.CategoricalIndex.union.html