w3resource

Pandas DataFrame: add_prefix() function

DataFrame - add_prefix() function

The add_prefix() function is used to prefix labels with string prefix.

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

Syntax:

DataFrame.add_prefix(self, prefix)

Parameters:

Name Description Type/Default Value Required / Optional
prefix           

The string to add before each label.

 str Required

Returns: Series or DataFrame
New Series or DataFrame with updated labels.

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - nunique() function
Next: DataFrame - add_suffix() function



Follow us on Facebook and Twitter for latest update.