用法:
Series.to_frame(name=NoDefault.no_default)
将 Series 转换为 DataFrame。
- name:对象,可选
传递的名称应替换系列名称(如果有的话)。
- DataFrame
Series 的 DataFrame 表示。
参数:
返回:
例子:
>>> s = pd.Series(["a", "b", "c"], ... name="vals") >>> s.to_frame() vals 0 a 1 b 2 c
相关用法
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.to_xarray用法及代码示例
- Python pandas.Series.to_markdown用法及代码示例
- Python pandas.Series.to_excel用法及代码示例
- Python pandas.Series.to_numpy用法及代码示例
- Python pandas.Series.to_latex用法及代码示例
- Python pandas.Series.to_json用法及代码示例
- Python pandas.Series.to_hdf用法及代码示例
- Python pandas.Series.to_sql用法及代码示例
- Python pandas.Series.to_dict用法及代码示例
- Python pandas.Series.to_clipboard用法及代码示例
- Python pandas.Series.truediv用法及代码示例
- Python pandas.Series.take用法及代码示例
- Python pandas.Series.tz_localize用法及代码示例
- Python pandas.Series.tail用法及代码示例
- Python pandas.Series.truncate用法及代码示例
- Python pandas.Series.transform用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.to_frame。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。