When the Introduction.Rmd vignette is talking about folding the dfSummary() into markdown, and shows plain.ascii = FALSE, tmp.img.dir = "/tmp" kinds of options, it is worth mentioning that the chunk that generates the output should go with {r chunk_name, results="asis", warning=FALSE} options (on my system, I am getting tons of warnings about not being able to connect to X11 display which I don't care at all about as long as the output is properly generated.)
This chunk option is mentioned in Recommendations-rmarkdown.Rmd file as a global option, which IMHO is a very brutal approach only applicable if all of one's markdown is a bunch of dfSummary() outputs.
When the
Introduction.Rmd
vignette is talking about folding thedfSummary()
into markdown, and showsplain.ascii = FALSE, tmp.img.dir = "/tmp"
kinds of options, it is worth mentioning that the chunk that generates the output should go with{r chunk_name, results="asis", warning=FALSE}
options (on my system, I am getting tons of warnings about not being able to connect to X11 display which I don't care at all about as long as the output is properly generated.)This chunk option is mentioned in
Recommendations-rmarkdown.Rmd
file as a global option, which IMHO is a very brutal approach only applicable if all of one's markdown is a bunch ofdfSummary()
outputs.Thank you for the very useful package!