From 39b044b07ee956c950a80510bed18c815a56a387 Mon Sep 17 00:00:00 2001 From: Jose Roberto Ayala Solares Date: Wed, 3 May 2017 13:55:38 +0100 Subject: [PATCH] Comma added (#481) --- rmarkdown.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rmarkdown.Rmd b/rmarkdown.Rmd index 752435a..ad215a5 100644 --- a/rmarkdown.Rmd +++ b/rmarkdown.Rmd @@ -62,7 +62,7 @@ To produce a complete report containing all text, code, and results, click "Knit knitr::include_graphics("rmarkdown/diamond-sizes-report.png") ``` -When you __knit__ the document R Markdown sends the .Rmd file to __knitr__, http://yihui.name/knitr/, which executes all of the code chunks and creates a new markdown (.md) document which includes the code and its output. The markdown file generated by knitr is then processed by __pandoc__, , which is responsible for creating the finished file. The advantage of this two step workflow is that you can create a very wide range of output formats, as you'll learn about in [R markdown formats]. +When you __knit__ the document, R Markdown sends the .Rmd file to __knitr__, http://yihui.name/knitr/, which executes all of the code chunks and creates a new markdown (.md) document which includes the code and its output. The markdown file generated by knitr is then processed by __pandoc__, , which is responsible for creating the finished file. The advantage of this two step workflow is that you can create a very wide range of output formats, as you'll learn about in [R markdown formats]. ```{r, echo = FALSE, out.width = "75%"} knitr::include_graphics("images/RMarkdownFlow.png")