Panel.rename_axis()
pandas.Panel.rename_axis
-
Panel.rename_axis(mapper, axis=0, copy=True, inplace=False)
-
Alter index and / or columns using input function or functions. A scaler or list-like for
mapper
will alter theIndex.name
orMultiIndex.names
attribute. A function or dict formapper
will alter the labels. Function / dict values must be unique (1-to-1). Labels not contained in a dict / Series will be left as-is.Parameters: mapper : scalar, list-like, dict-like or function, optional
axis : int or string, default 0
copy : boolean, default True
Also c