r - dplyr::tbl_df fill whole screen -


dplyr::as.tbl(mtcars) fills 10 rows of screen, in screenshot below:

enter image description here

can r configured if tbl_df can fill whole r window without data 'falling off window' (as in case of mtcars), dplyr force tbl_df fill whole window.

so want output of dplyr::as.tbl(mtcars) be:

enter image description here

several ways accomplish this:

# show 1000 rows , columns *capital v in view* df %>% view()  # set option see columns , fewer rows options(dplyr.width = inf, dplyr.print_min = 6)  # reset options defaults (or close r) options(dplyr.width = null, dplyr.print_min = 10)  # measure, don't forget glimpse()... df %>% glimpse() 

Comments

Popular posts from this blog

How to run C# code using mono without Xamarin in Android? -

c# - SharpSsh Command Execution -

python - Specify path of savefig with pylab or matplotlib -