Pandas:向資料幀添加新列,該資料幀是索引列的副本
使用Pandas 資料幀時,它可能很幀有用地建立一個新列,它是索引列的副本。這在繪製資料幀時很有用,因為它允許使用原始資料幀中未包含的列。
要將新欄位新增至作為索引列副本的資料幀,可以採取下列步驟:
以下範例示範如何將新列新增至作為索引列副本的資料幀:
import pandas as pd df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]}) # Reset the index of the dataframe df = df.reset_index() # Assign the new column name to the index column df['Time'] = df['index'] # Set the new column as the index of the dataframe df = df.set_index('Time') print(df)
輸出:
A B Time 0 1 4 1 2 5 2 3 6
如您所見,資料框中新增了一個名為「Time」的新列,它是原始索引的副本專欄。
以上是如何在 Pandas DataFrame 中建立作為索引副本的新欄位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!