逆向轉換:將 Pandas DataFrame 轉換為列表列表
從列表列表創建 pandas DataFrame 非常簡單。但是,將 DataFrame 轉換回列表列表需要不同的方法。本題研究從 DataFrame 中提取資料並將其轉換為所需格式的方法。
要實現轉換,可以採取以下步驟:
檢索底層數組:
轉換為列表:
例如:
<code class="python">import pandas as pd # Create a DataFrame df = pd.DataFrame([[1, 2, 3], [3, 4, 5]]) # Extract the underlying NumPy array array = df.values # Convert to a list of lists list_of_lists = array.tolist() # Print the result print(list_of_lists) # Output: [[1, 2, 3], [3, 4, 5]]</code>
透過以下步驟,您可以有效地將 pandas DataFrame 轉換回列表列表,保留原始資料。
以上是如何將 Pandas DataFrame 轉換回清單清單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!