擴展 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 設定顯示的最大行數。pd.set_printoptions(max_columns=500)
以上是如何擴展 Pandas DataFrame 輸出以顯示更多列和行?的詳細內容。更多資訊請關注PHP中文網其他相關文章!