Python|熊猫索引.repeat()
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Index.repeat()
函数重复索引的元素。该函数返回一个新索引,其中当前索引的每个元素连续重复给定次数。
Syntax: Index.repeat(repeats, *args, **kwargs)
Parameters :
repeats : The number of repetitions for each element.
**kwargs : Additional keywords have no effect but might be accepted for compatibility with numpy.
Returns : Newly created Index with repeated elements.
示例 #1:使用Index.repeat()()
函数将索引的元素重复 2 次。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Beagle', 'Pug', 'Labrador', 'Pug',
'Mastiff', None, 'Beagle'])
# Print the Index
idx
输出 :
让我们重复索引元素 2 次。
# to repeat the values
idx.repeat(2)
输出 :
正如我们在输出中看到的,该函数返回了一个新索引,其中所有值都重复了 2 次。需要注意的一件重要事情是该函数还重复了NaN
值。
示例 #2:使用Index.repeat()
函数将 index 的值重复 3 次。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([22, 14, 8, 56, None, 21, None, 23])
# Print the Index
idx
输出 :
让我们重复索引元素 3 次。
# to repeat the values
idx.repeat(3)
输出 :
正如我们在输出中看到的,该函数返回了一个新索引,其中所有值都重复了 3 次。需要注意的一件重要事情是该函数还重复了NaN
值。