用法:
property Series.name
返回系列的名称。
如果 Series 用于生成 DataFrame,则 Series 的名称将成为其索引或列名称。每当使用解释器显示系列时,也会使用它。
- 标签(可散列的对象)
系列的名称,如果是 DataFrame 的一部分,也是列名。
返回:
例子:
Series 名称可以在调用构造函数时设置。
>>> s = pd.Series([1, 2, 3], dtype=np.int64, name='Numbers') >>> s 0 1 1 2 2 3 Name:Numbers, dtype:int64 >>> s.name = "Integers" >>> s 0 1 1 2 2 3 Name:Integers, dtype:int64
DataFrame 中 Series 的名称是其列名。
>>> df = pd.DataFrame([[1, 2], [3, 4], [5, 6]], ... columns=["Odd Numbers", "Even Numbers"]) >>> df Odd Numbers Even Numbers 0 1 2 1 3 4 2 5 6 >>> df["Even Numbers"].name 'Even Numbers'
相关用法
- Python pandas.Series.nsmallest用法及代码示例
- Python pandas.Series.notna用法及代码示例
- Python pandas.Series.nunique用法及代码示例
- Python pandas.Series.ne用法及代码示例
- Python pandas.Series.notnull用法及代码示例
- Python pandas.Series.nlargest用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.name。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。