We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Seems surprising, I thought .name would come along.
.name
In [31]: idx = pd.MultiIndex.from_product([['A'], ['a', 'b', 'c']]) In [32]: idx.name = 'foo' In [33]: idx2 = idx.set_names(['l1', 'l2']) In [34]: idx2.name
Bug, or user error since MultiIndex.name isn't all that useful?