modin.pandas.Series.add_suffix¶
- Series.add_suffix(suffix, axis=None) Union[DataFrame, Series][source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/.tox/docs/lib/python3.9/site-packages/modin/pandas/series.py#L673-L682)¶
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:
See also
Series.add_prefixPrefix row labels with string prefix.
DataFrame.add_prefixPrefix column labels with string prefix.
Examples