Reduce printed output with options
* Show maximum 2 line footer for dplyr * Show max 6 entries for str_view() cc @mine-cetinkaya-rundel
This commit is contained in:
parent
e09d3c4eb5
commit
fb80197bf7
|
@ -13,7 +13,8 @@ knitr::opts_chunk$set(
|
||||||
options(
|
options(
|
||||||
dplyr.print_min = 6,
|
dplyr.print_min = 6,
|
||||||
dplyr.print_max = 6,
|
dplyr.print_max = 6,
|
||||||
stringr.view_n = 10,
|
pillar.max_footer_lines = 2,
|
||||||
|
stringr.view_n = 6,
|
||||||
# Activate crayon output - temporarily disabled for quarto
|
# Activate crayon output - temporarily disabled for quarto
|
||||||
# crayon.enabled = TRUE,
|
# crayon.enabled = TRUE,
|
||||||
pillar.bold = TRUE,
|
pillar.bold = TRUE,
|
||||||
|
|
Loading…
Reference in New Issue