python中pandas輸出完整、對齊的表格的方法

今天使用python計算數據相關性,但是發現計算出的表格中間好多省略號,而且也不對齊。

這也太難看瞭。

於是在程序裡加瞭三行:

pd.set_option(‘display.max_columns’, 1000)
pd.set_option(‘display.width’, 1000)
pd.set_option(‘display.max_colwidth’, 1000)

輸出結果如下,輸出結果已經全部顯示瞭:

但是依然不對齊。

於是又加瞭兩行:

pd.set_option(‘display.unicode.ambiguous_as_wide’, True)
pd.set_option(‘display.unicode.east_asian_width’, True)

運行結果對齊瞭,但仍然有瑕疵,不過已經好多瞭:

到此這篇關於python中pandas如何輸出完整、對齊的表格的文章就介紹到這瞭,更多相關pandas輸出完整、對齊的表格內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: