用法:
Series.repeat(repeats, axis=None)
重复系列的元素。
返回一个新系列,其中当前系列的每个元素连续重复给定次数。
- repeats:整数或整数数组
每个元素的重复次数。这应该是一个非负整数。重复 0 次将返回一个空系列。
- axis:None
必须是
None
。没有效果,但被接受以与 numpy 兼容。
- Series
新创建的具有重复元素的系列。
参数:
返回:
例子:
>>> s = pd.Series(['a', 'b', 'c']) >>> s 0 a 1 b 2 c dtype:object >>> s.repeat(2) 0 a 0 a 1 b 1 b 2 c 2 c dtype:object >>> s.repeat([1, 2, 3]) 0 a 1 b 1 b 2 c 2 c 2 c dtype:object
相关用法
- Python pandas.Series.replace用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.reindex用法及代码示例
- Python pandas.Series.reset_index用法及代码示例
- Python pandas.Series.resample用法及代码示例
- Python pandas.Series.rename用法及代码示例
- Python pandas.Series.rename_axis用法及代码示例
- Python pandas.Series.rdiv用法及代码示例
- Python pandas.Series.rsub用法及代码示例
- Python pandas.Series.rdivmod用法及代码示例
- Python pandas.Series.rmul用法及代码示例
- Python pandas.Series.rmod用法及代码示例
- Python pandas.Series.rpow用法及代码示例
- Python pandas.Series.rfloordiv用法及代码示例
- Python pandas.Series.rolling用法及代码示例
- Python pandas.Series.rank用法及代码示例
- Python pandas.Series.radd用法及代码示例
- Python pandas.Series.rtruediv用法及代码示例
- Python pandas.Series.round用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.repeat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。