首頁 > 後端開發 > Python教學 > 如何將 CSV 資料導入 Pandas DataFrame?

如何將 CSV 資料導入 Pandas DataFrame?

Susan Sarandon
發布: 2024-12-04 17:37:11
原創
308 人瀏覽過

How to Import CSV Data into a Pandas DataFrame?

將 CSV 資料匯入為 Pandas DataFrame

將資料載入到 Pandas DataFrame 中是資料分析和操作的常見任務。實現此目的最直接的方法之一是從 CSV 檔案讀取資料。以下是實現此目的的方法:

使用 pandas.read_csv

pandas.read_csv 函數提供了將 CSV 檔案讀入 Pandas DataFrame 的便捷方法。考慮以下CSV 檔案:

Date,"price","factor_1","factor_2"
2012-06-11,1600.20,1.255,1.548
2012-06-12,1610.02,1.258,1.554
2012-06-13,1618.07,1.249,1.552
2012-06-14,1624.40,1.253,1.556
2012-06-15,1626.15,1.258,1.552
2012-06-16,1626.15,1.263,1.558
2012-06-17,1626.15,1.264,1.572
登入後複製

要將這些資料匯入到DataFrame 中,我們可以使用下列Python 程式碼:

import pandas as pd

# Specify the file path
file_path = "data.csv"

# Read the CSV file into a DataFrame
df = pd.read_csv(file_path)

# Print the DataFrame
print(df)
登入後複製

此程式碼將使用下列內容建立一個Pandas DataFrame結構:

Date price factor_1 factor_2
2012-06-11 1600.20 1.255 1.548
2012-06-12 1610.02 1.258 1.554
2012-06-13 1618.07 1.249 1.552
2012-06-14 1624.40 1.253 1.556
2012-06-15 1626.15 1.258 1.552
2012-06-16 1626.15 1.263 1.558
2012-06-17 1626.15 1.264 1.572

以上是如何將 CSV 資料導入 Pandas DataFrame?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板