首頁 >後端開發 >Python教學 >如何擴展 Pandas DataFrame 輸出以顯示更多列和行?

如何擴展 Pandas DataFrame 輸出以顯示更多列和行?

Patricia Arquette
Patricia Arquette原創
2024-12-14 04:33:14538瀏覽

How Can I Expand Pandas DataFrame Output to Display More Columns and Rows?

擴展 Pandas DataFrame 顯示輸出

要擴展 Pandas DataFrame 的輸出顯示以查看更多列,您可以使用 pandas.set_option ()函數:

import pandas as pd

pd.set_option('display.max_columns', 500)

這設定了要顯示的最大列數輸出為500。

其他選項

除了display.max_columns,你還可以調整其他顯示選項:

  • display .max_rows:
  • display .max_rows:
display .max_rows:

display .max_rows:

display .max_rows:

display .max_rows:

display 設定顯示的最大行數。
pd.set_printoptions(max_columns=500)
display.width:設定輸出的寬度(以字元為單位)。 display.max_colwidth:設定每列的最大寬度(以避免截斷)。 自動偵測 預設情況下,Pandas 會嘗試自動偵測終端視窗的大小。如果輸出無法在螢幕上顯示,它將切換到摘要視圖。您可以透過設定 display.width = 0 來停用自動偵測。 較舊的 Pandas 版本對於 0.23.4 之前的 Pandas 版本,您可以使用已棄用的 pandas。 set_printoptions() 函數而不是 pandas.set_option():

以上是如何擴展 Pandas DataFrame 輸出以顯示更多列和行?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn