modin.pandas.DataFrame.add_suffix¶
- DataFrame.add_suffix(suffix)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.17.0/src/snowflake/snowpark/modin/pandas/dataframe.py#L425-L435)¶
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