Tasneem Zaihra
Monday, Feb 27, 2017
R is a language and environment for statistical computing and graphics. It includes
R includes a powerful and flexible system (Sweave) for creating dynamic reports and reproducible research using LaTeX.
Sweave enables the embedding of R code within LaTeX documents to generate a PDF file that includes narrative and analysis, graphics, code, and the results of computations.
For more details on authoring R presentations please visit https://support.rstudio.com/hc/en-us/articles/200486468.
-You can use knitr rather than classic Sweave for weaving Rnw files.
Rnw stands for R NoWeb files. They have to be processed by Sweave i.e. code chunks are processed with R and results inluded into a LaTeX file that itself has to be processed by LaTeX oder PDFLaTeX.
Workflow R Markdown is a format for writing reproducible, dynamic reports with R. Use it to embed R code and results into slideshows, pdfs, html documents.
They use different syntax to wrap up R code in the input document, and the results returned from R are marked up according to the syntax of the output document.
You'll use substantially the same structure to write a document using markdown or \( \LaTeX \), that is, with a .Rmd or .Rnw file type.t
Cheatsheet link. https://www.rstudio.com/wp-content/uploads/2015/02/rmarkdown-cheatsheet.pdf
summary(cars)
speed dist
Min. : 4.0 Min. : 2.00
1st Qu.:12.0 1st Qu.: 26.00
Median :15.0 Median : 36.00
Mean :15.4 Mean : 42.98
3rd Qu.:19.0 3rd Qu.: 56.00
Max. :25.0 Max. :120.00