Kasia Kulma
Kasia Kulma

Reputation: 1722

R Markdown: knitr option results='hide' not working

I'm trying to produce a chunk code that executes and shows the code but hides the output. I know that the way to do it is by adding echo = T, results = 'hide' in knitr chunk options, as suggested here. However, in my case, this still produces the output, any ideas why?

enter image description here

My session info:

> sessionInfo()
R version 3.4.3 (2017-11-30)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

Matrix products: default

locale:
[1] LC_COLLATE=English_United Kingdom.1252 
[2] LC_CTYPE=English_United Kingdom.1252   
[3] LC_MONETARY=English_United Kingdom.1252
[4] LC_NUMERIC=C                           
[5] LC_TIME=English_United Kingdom.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] compiler_3.4.3  backports_1.1.2 rprojroot_1.3-2 htmltools_0.3.6
 [5] tools_3.4.3     yaml_2.2.0      Rcpp_0.12.19    rmarkdown_1.10 
 [9] knitr_1.20      digest_0.6.18   evaluate_0.12  

Upvotes: 2

Views: 2396

Answers (1)

CSJCampbell
CSJCampbell

Reputation: 2115

Plots can be suppressed with the option fig.keep = 'none'.

Upvotes: 5

Related Questions