modin.pandas.DataFrame.rename_axis¶
- DataFrame.rename_axis(mapper=_NoDefault.no_default, *, index=_NoDefault.no_default, columns=_NoDefault.no_default, axis=0, copy=None, inplace=False)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/modin/plugin/extensions/base_overrides.py#L2338-L2403)¶
Set the name of the axis for the index or columns.
- Parameters:
mapper (scalar, list-like, optional) – Value to set the axis name attribute.
index (scalar, list-like, dict-like or function, optional) –
A scalar, list-like, dict-like or functions transformations to apply to that axis’ values.
Use either
mapper
andaxis
to specify the axis to target withmapper
, orindex
and/orcolumns
.columns (scalar, list-like, dict-like or function, optional) –
A scalar, list-like, dict-like or functions transformations to apply to that axis’ values.
Use either
mapper
andaxis
to specify the axis to target withmapper
, orindex
and/orcolumns
.axis ({0 or 'index', 1 or 'columns'}, default 0) – The axis to rename.
copy (bool, default None) – Also copy underlying data. This parameter is ignored in Snowpark pandas.
inplace (bool, default False) – Modifies the object directly, instead of creating a new DataFrame.
- Returns:
DataFrame, or None if
inplace=True
.- Return type:
DataFrame or None