pandas 1.4.2

ParametersReturnsBackRef
repeat(self, repeats, axis=None) -> 'Series'

Returns a new Series where each element of the current Series is repeated consecutively a given number of times.

Parameters

repeats : int or array of ints

The number of repetitions for each element. This should be a non-negative integer. Repeating 0 times will return an empty Series.

axis : None

Must be None . Has no effect but is accepted for compatibility with numpy.

Returns

Series

Newly created Series with repeated elements.

Repeat elements of a Series.

See Also

Index.repeat

Equivalent function for Index.

numpy.repeat

Similar method for :None:class:`numpy.ndarray`.

Examples

This example is valid syntax, but we were not able to check execution
>>> s = pd.Series(['a', 'b', 'c'])
... s 0 a 1 b 2 c dtype: object
This example is valid syntax, but we were not able to check execution
>>> s.repeat(2)
0    a
0    a
1    b
1    b
2    c
2    c
dtype: object
This example is valid syntax, but we were not able to check execution
>>> s.repeat([1, 2, 3])
0    a
1    b
1    b
2    c
2    c
2    c
dtype: object
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

pandas.core.indexes.base.Index.repeat pandas.core.arrays.base.ExtensionArray.repeat pandas.core.arrays.interval.IntervalArray.repeat pandas.core.indexes.multi.MultiIndex.repeat

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/series.py#1296
type: <class 'function'>
Commit: