pandas 1.4.2

ParametersReturns
add_prefix(self: 'NDFrameT', prefix: 'str') -> 'NDFrameT'

For Series, the row labels are prefixed. For DataFrame, the column labels are prefixed.

Parameters

prefix : str

The string to add before each label.

Returns

Series or DataFrame

New Series or DataFrame with updated labels.

Prefix labels with string :None:None:`prefix`.

See Also

DataFrame.add_suffix

Suffix column labels with string :None:None:`suffix`.

Series.add_suffix

Suffix row labels with string :None:None:`suffix`.

Examples

This example is valid syntax, but we were not able to check execution
>>> s = pd.Series([1, 2, 3, 4])
... s 0 1 1 2 2 3 3 4 dtype: int64
This example is valid syntax, but we were not able to check execution
>>> s.add_prefix('item_')
item_0    1
item_1    2
item_2    3
item_3    4
dtype: int64
This example is valid syntax, but we were not able to check execution
>>> df = pd.DataFrame({'A': [1, 2, 3, 4], 'B': [3, 4, 5, 6]})
... df A B 0 1 3 1 2 4 2 3 5 3 4 6
This example is valid syntax, but we were not able to check execution
>>> df.add_prefix('col_')
     col_A  col_B
0       1       3
1       2       4
2       3       5
3       4       6
See :

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/generic.py#4382
type: <class 'function'>
Commit: