modin.pandas.Index.name¶ property Index.name: Hashable[source]¶ Get the index name. Returns: Name of this index. Return type: Hashable Examples CopyExpand>>> idx = pd.Index([1, 2, 3], name='x') >>> idx Index([1, 2, 3], dtype='int64', name='x') >>> idx.name 'x' Show lessSee moreScroll to top