mars.dataframe.DataFrame.add_suffix#

DataFrame.add_suffix(suffix)#

Suffix labels with string suffix.

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

New Series or DataFrame with updated labels.

Return type

Series or DataFrame

See also

Series.add_prefix

Suffix row labels with string prefix.

DataFrame.add_prefix

Suffix column labels with string prefix.

Examples

>>> import mars.dataframe as md
>>> s = md.Series([1, 2, 3, 4])
>>> s.execute()
0    1
1    2
2    3
3    4
dtype: int64
>>> s.add_prefix('_item').execute()
0_item    1
1_item    2
2_item    3
3_item    4
dtype: int64
>>> df = md.DataFrame({'A': [1, 2, 3, 4], 'B': [3, 4, 5, 6]})
>>> df.execute()
   A  B
0  1  3
1  2  4
2  3  5
3  4  6
>>> df.add_prefix('_col').execute()
     A_col  B_col
0        1      3
1        2      4
2        3      5
3        4      6