repeat(self, repeats: 'int', axis=None) -> 'MultiIndex'
Returns a new MultiIndex where each element of the current MultiIndex is repeated consecutively a given number of times.
The number of repetitions for each element. This should be a non-negative integer. Repeating 0 times will return an empty MultiIndex.
Must be None
. Has no effect but is accepted for compatibility with numpy.
Newly created MultiIndex with repeated elements.
Repeat elements of a MultiIndex.
Series.repeat
Equivalent function for Series.
numpy.repeat
Similar method for :None:class:`numpy.ndarray`
.
>>> idx = pd.Index(['a', 'b', 'c'])This example is valid syntax, but we were not able to check execution
... idx Index(['a', 'b', 'c'], dtype='object')
>>> idx.repeat(2) Index(['a', 'a', 'b', 'b', 'c', 'c'], dtype='object')This example is valid syntax, but we were not able to check execution
>>> idx.repeat([1, 2, 3]) Index(['a', 'b', 'b', 'c', 'c', 'c'], dtype='object')See :
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