pandas
Index.append()
Append a collection of Index options together.
Examples
>>> idx = pd.Index([1, 2, 3]) >>> idx.append(pd.Index([4])) Index([1, 2, 3, 4], dtype='int64')
previous
pandas.Index.shift
next
pandas.Index.join