pandas.Index.repeat#
- Index.repeat(repeats, axis=None)[源代码][源代码]#
重复索引的元素。
返回一个新的索引,其中当前索引的每个元素连续重复给定的次数。
- 参数:
- 重复整数或整数数组
每个元素的重复次数。这应该是一个非负整数。重复0次将返回一个空的索引。
- 轴None
必须是
None
。没有效果,但为了与 numpy 兼容而接受。
- 返回:
- 索引
新创建的索引,包含重复元素。
参见
Series.repeat
Series 的等效函数
numpy.repeat
类似的方法用于
numpy.ndarray
。
例子
>>> idx = pd.Index(['a', 'b', 'c']) >>> idx Index(['a', 'b', 'c'], dtype='object') >>> idx.repeat(2) Index(['a', 'a', 'b', 'b', 'c', 'c'], dtype='object') >>> idx.repeat([1, 2, 3]) Index(['a', 'b', 'b', 'c', 'c', 'c'], dtype='object')