將 Pandas 系列或索引轉換為 NumPy 陣列
使用 value 屬性將 Pandas 系列或索引檢索為 NumPy 陣列非常簡單。此屬性提供對底層資料的直接訪問,無需轉換。
取得索引的NumPy 陣列:
<code class="python">import pandas as pd df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]}, index=['a', 'b', 'c']) index_array = df.index.values</code>
此屬性也可用於其他Pandas 對象,例如作為列:
<code class="python">column_array = df['A'].values</code>
或者,要將索引或系列轉換為列表,請使用tolist() 方法:
<code class="python">index_list = df.index.tolist() column_list = df['A'].tolist()</code>
以上是如何將 Pandas 系列或索引轉換為 NumPy 陣列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!