用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。