使用缺少標題的 CSV 檔案時,通常需要指定要包含哪些欄位。 Pandas 提供了一種靈活的方法來執行此操作。
usecols 參數可讓您指定列索引或名稱的清單。當用於沒有標題的文件時,索引從 0 開始。例如,要讀取第4 和第7 列:
<code class="python">df = pd.read_csv(file_path, header=None, usecols=[3, 6])</code>
有關讀取CSV 文件的更多信息,請參閱Pandas 文件:[https://pandas.pydata.org /pandas-docs/stable/reference /api/pandas.read_csv.html](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_csv.html)
以上是如何從 Pandas 中沒有標題的 CSV 檔案中讀取資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!