From d197193636636824f740135625736441b0287219 Mon Sep 17 00:00:00 2001 From: Sudhakar Kumar Date: Fri, 28 Jun 2019 12:43:08 +0530 Subject: [PATCH] Create index.md for markdown in R. (#35375) * Create index.md Create index.md for markdown in R. * Create index.md for R Markdown Create index.md for R Markdown, which is used to create reproducible documents. * Fix grammar issue Fix grammar issue to remove duplicate word "package". --- guide/english/r/markdown/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 guide/english/r/markdown/index.md diff --git a/guide/english/r/markdown/index.md b/guide/english/r/markdown/index.md new file mode 100644 index 0000000000..403f92890c --- /dev/null +++ b/guide/english/r/markdown/index.md @@ -0,0 +1,12 @@ +--- +title: R Markdown +--- + +## What is R Markdown? +According to [R-bloggers](https://www.r-bloggers.com/), [R Markdown](https://rmarkdown.rstudio.com/) is a great way to create dynamic documents with embedded chunks of R code. The document is self contained and fully reproducible which makes it very easy to share. In other words, it allows you to create documents that serve as a neat record of your analysis. + +## Installation +Like the rest of R, [R Markdown](https://rmarkdown.rstudio.com/) is free and open source. This package can be installed from CRAN with: +```r +install.packages("rmarkdown") +```