r - dplyr::tbl_df fill whole screen -
dplyr::as.tbl(mtcars)
fills 10 rows of screen, in screenshot below:
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:
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
Post a Comment