Panel.join()
pandas.Panel.join
-
Panel.join(other, how='left', lsuffix='', rsuffix='')
[source] -
Join items with other Panel either on major and minor axes column
Parameters: other : Panel or list of Panels
Index should be similar to one of the columns in this one
how : {‘left’, ‘right’, ‘outer’, ‘inner’}
How to handle indexes of the two objects. Default: ‘left’ for joining on index, None otherwise * left: use calling frame’s index *