pandas 1.4.2

ParametersReturns
add_suffix(self: 'NDFrameT', suffix: 'str') -> 'NDFrameT'

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

Parameters

suffix : str

The string to add after each label.

Returns

Series or DataFrame

New Series or DataFrame with updated labels.

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

See Also

DataFrame.add_prefix

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

Series.add_prefix

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

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_suffix('_item')
0_item    1
1_item    2
2_item    3
3_item    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_suffix('_col')
     A_col  B_col
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#4446
type: <class 'function'>
Commit: