bigframes.pandas.DataFrame.add_suffix#

DataFrame.add_suffix(suffix:str,axis:int|str|None=None)DataFrame[source]#

Suffix labels with stringsuffix.

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

Parameters:
  • suffix – The string to add after each label.

  • axis{{0or'index',1or'columns',None}}, default None. Axisto add suffix on

Returns:

New Series or DataFrame with updated labels.

Return type:

bigframes.pandas.DataFrame orbigframes.pandas.Series

This Page