2017-04-13 8 views
1

データフレームをセルに配置すると、いくつかの行のみが表示され、途中には "..."が表示されます。Rカーネルを持つ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); print(m1) ' –

+0

ありがとう! "print"関数は、素晴らしい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です。

関連する問題