Supress cache & activate crayon

This commit is contained in:
Hadley Wickham 2021-04-20 06:48:01 -05:00
parent c88a907d4a
commit d80982caa6
1 changed files with 6 additions and 3 deletions

View File

@ -3,7 +3,7 @@ set.seed(1014)
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
cache = TRUE,
# cache = TRUE,
out.width = "70%",
fig.align = 'center',
fig.width = 6,
@ -13,5 +13,8 @@ knitr::opts_chunk$set(
options(dplyr.print_min = 6, dplyr.print_max = 6)
# Supress crayon output
options(crayon.enabled = FALSE)
# Activate crayon output
options(
crayon.enabled = TRUE,
pillar.bold = TRUE
)