用法:
Series.add_suffix(suffix)
使用字符串
suffix
為標簽添加後綴。對於係列,行標簽是後綴的。對於 DataFrame,列標簽是後綴的。
- suffix:str
在每個標簽之後添加的字符串。
- Series或DataFrame
帶有更新標簽的新係列或 DataFrame 。
參數:
返回:
例子:
>>> s = pd.Series([1, 2, 3, 4]) >>> s 0 1 1 2 2 3 3 4 dtype:int64
>>> s.add_suffix('_item') 0_item 1 1_item 2 2_item 3 3_item 4 dtype:int64
>>> df = pd.DataFrame({'A':[1, 2, 3, 4], 'B':[3, 4, 5, 6]}) >>> df A B 0 1 3 1 2 4 2 3 5 3 4 6
>>> df.add_suffix('_col') A_col B_col 0 1 3 1 2 4 2 3 5 3 4 6
相關用法
- Python pandas.Series.add_prefix用法及代碼示例
- Python pandas.Series.add用法及代碼示例
- Python pandas.Series.apply用法及代碼示例
- Python pandas.Series.append用法及代碼示例
- Python pandas.Series.at_time用法及代碼示例
- Python pandas.Series.array用法及代碼示例
- Python pandas.Series.argmin用法及代碼示例
- Python pandas.Series.abs用法及代碼示例
- Python pandas.Series.asfreq用法及代碼示例
- Python pandas.Series.asof用法及代碼示例
- Python pandas.Series.agg用法及代碼示例
- Python pandas.Series.at用法及代碼示例
- Python pandas.Series.all用法及代碼示例
- Python pandas.Series.argmax用法及代碼示例
- Python pandas.Series.align用法及代碼示例
- Python pandas.Series.aggregate用法及代碼示例
- Python pandas.Series.any用法及代碼示例
- Python pandas.Series.astype用法及代碼示例
- Python pandas.Series.autocorr用法及代碼示例
- Python pandas.Series.map用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.add_suffix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。