Pandas Series.to_frame(~)
方法將 Series 轉換為 single-column DataFrame。
警告
修改返回的DataFrame將會改變原始Series,反之亦然。
參數
1.name
| object
| optional
分配給生成的 DataFrame 的唯一列的標簽。如果源 Series
有名稱,則指定 name
將覆蓋它。默認情況下,name=None
。
返回值
具有單列的 DataFrame
。
例子
基本用法
沒有名字的係列
轉換沒有名稱的Series
:
s = pd.Series([2,3])
s.to_frame()
0
0 2
1 3
請注意列標簽如何設置為默認整數索引 0
。
有名字的係列
將 Series
轉換為名稱:
s = pd.Series([2,3], name="A")
s.to_frame()
A
0 2
1 3
請注意列標簽是如何設置為我們的係列名稱的。
指定名稱參數
使用 name
參數轉換係列:
s = pd.Series([2,3])
s.to_frame(name="B")
B
0 2
1 3
請注意,即使 s
此處有名稱,列名稱也會被覆蓋為 B
。
相關用法
- Python Pandas Series to_list方法用法及代碼示例
- Python Pandas Series str extractall方法用法及代碼示例
- Python Pandas Series str split方法用法及代碼示例
- Python Pandas Series str center方法用法及代碼示例
- Python Pandas Series between方法用法及代碼示例
- Python Pandas Series str pad方法用法及代碼示例
- Python Pandas Series map方法用法及代碼示例
- Python Pandas Series hasnans屬性用法及代碼示例
- Python Pandas Series is_monotonic屬性用法及代碼示例
- Python Pandas Series str extract方法用法及代碼示例
- Python Pandas Series string contains方法用法及代碼示例
- Python Pandas Series zfill方法用法及代碼示例
- Python Pandas Series argmax方法用法及代碼示例
- Python Pandas Series str replace方法用法及代碼示例
- Python Pandas Series str len方法用法及代碼示例
- Python Pandas Series str lower方法用法及代碼示例
- Python Pandas Series is_monotonic_increasing屬性用法及代碼示例
- Python Pandas Series str strip方法用法及代碼示例
- Python Pandas Series is_unique屬性用法及代碼示例
- Python Pandas Series str rstrip方法用法及代碼示例
- Python Pandas Series str lstrip方法用法及代碼示例
- Python Pandas Series argmin方法用法及代碼示例
- Python Pandas Series value_counts方法用法及代碼示例
- Python Pandas Series is_monotonic_decreasing屬性用法及代碼示例
- Python Pandas Series.cumsum()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Pandas Series | to_frame method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。