增加JupyterNotebook中控制台显示的列数

时间:2017-12-20 11:49:18

标签: r console jupyter-notebook

我正在使用超过20列的表和Jupyter Notebook,如何增加从控制台输出的列数。

由于

1 个答案:

答案 0 :(得分:0)

library(tidyverse)

options(repr.matrix.max.cols=100) # <== the important bit

bind_cols(bind_cols(mtcars, mtcars), mtcars)

enter image description here