2017-04-13 28 views
1

當我將數據框放入單元格時,它只顯示一些行,中間有一個「...」。如何在Rup內核的Jupyter筆記本中查看數據幀的所有行?

編輯:我正在尋找這些Python的筆記本 - [R當量來電:

import pandas 
# "If max_cols is exceeded, switch to truncate view" 
pandas.set_option('display.max_columns', 5400) 
# "The maximum width in characters of a column" 
pandas.set_option('display.max_colwidth', 500) 

http://pandas.pydata.org/pandas-docs/stable/generated/pandas.set_option.html見。

+0

嘗試打印輸出?例如。 '庫(plyr); m1 < - ldply(iris,rep,3);打印(m1)' –

+0

謝謝! 「打印」功能刪除了漂亮的HTML表格格式(排列值,更好看的字體,表格行......)。 – dfrankow

回答

3

托馬斯Kluyver says

我想你想的選項repr.matrix.max.rows和 repr.matrix.max.cols

即運行

options(repr.matrix.max.rows=600, repr.matrix.max.cols=200) 

默認值爲60和20.

相關問題