pandas.Index.map #

指数。地图(映射器, na_action = None ) [来源] #

使用输入映射或函数映射值。

参数
映射器函数、字典或系列

映射对应关系。

na_action {无,'忽略'}

如果“忽略”,则传播 NA 值,而不将它们传递到映射对应关系。

返回
联合[索引、多索引]

应用于索引的映射函数的输出。如果该函数返回一个包含多个元素的元组,则将返回 MultiIndex。

例子

>>> idx = pd.Index([1, 2, 3])
>>> idx.map({1: 'a', 2: 'b', 3: 'c'})
Index(['a', 'b', 'c'], dtype='object')

将地图与函数一起使用:

>>> idx = pd.Index([1, 2, 3])
>>> idx.map('I am a {}'.format)
Index(['I am a 1', 'I am a 2', 'I am a 3'], dtype='object')
>>> idx = pd.Index(['a', 'b', 'c'])
>>> idx.map(lambda x: x.upper())
Index(['A', 'B', 'C'], dtype='object')