【python】pandas display選項

import pandas as pdspa

 

一、pd.set_option('expand_frame_repr', False)ci

True就是能夠換行顯示。設置成False的時候不容許換行pandas

二、pd.set_option('display.max_rows', 10)io

pd.set_option('display.max_columns', 10)import

顯示的最大行數和列數,若是超額就顯示省略號,這個指的是多少個dataFrame的列。若是比較多又不容許換行,就會顯得很亂。im

三、pd.set_option('precision', 5)di

顯示小數點後的位數co

四、pd.set_option('large_repr', A)header

 truncate表示截斷,info表示查看信息,通常選truncatedisplay

五、pd.set_option('max_colwidth', 5)

列長度

六、pd.set_option('chop_threshold', 0.5)

絕對值小於0.5的顯示0.0

七、pd.set_option('colheader_justify', 'left')

 顯示居中仍是左邊,

八、pd.set_option('display.width', 200)

橫向最多顯示多少個字符, 通常80不適合橫向的屏幕,平時多用200.

相關文章
相關標籤/搜索