In R Markdown



The simplest way to write a quick report, mixing in a bit of R, is touse R Markdown, avariant of Markdowndeveloped by the folks at Rstudio.

Equations In R Markdown

Ctrl + R: Reload Discord: Up: Edit last message: COMMANDS: Command: Action /giphy: Search for a GIF with Giphy /tenor: Search for a GIF with Tenor /tts: Send the message with text-to-speech /me: Send the message with emphasis /tableflip: Displays ASCII art of a table flip /unflip: Displays ASCII art of replacing a table /shrug: Displays ASCII. In R Markdown, you will learn about R Markdown, a tool for integrating prose, code, and results. You can use R Markdown in notebook mode for analyst-to-analyst communication, and in report mode for analyst-to-decision-maker communication. Thanks to the power of R Markdown formats, you can even use the same document for both purposes.

Analysis reports in R Markdown. How to generate an HTML report. Method 1: Start a new R Markdown file in R Studio. You can add images to an R Markdown report using markdown syntax as follows:!alt text here(path-to-image-here) However, when you knit the report, R will only be able to find your image if you have placed it in the right place - RELATIVE to your.Rmd file. This is where good file.

You should first read the page about Markdown.

R Markdown

R Markdown is avariant of Markdownthat has embedded R code chunks, tobe used with knitr to make it easy tocreate reproducible web-based reports. The Markdown syntax has someenhancements (see theR Markdown page); for example,you can include LaTeX equations (seeEquations in R Markdown).

Here’s an example R Markdown document,and the html document it produces.

Code chunks

The key thing for us to focus on are the code chunks, which look like this:

In the midst of an otherwise plain Markdown document, you’ll have abit of R code that is initiated by a line like this:

After the code, there’ll be a line with just three backticks.

It’s usually best to give each code chunk a name, like simulate-dataand chunk-name above. The name is optional; if included, each codechunk needs a distinct name. The advantage of giving each chunk a nameis that it will be easier to understand where to look for errors,should they occur. Also, any figures that are created will be givennames based on the name of the code chunk that produced them. Asdiscussed in R Markdown: The DefinitiveGuide, it is bestfor the chunk labels to use just letters, numbers, and dashes, andno other special characters.

When you process the R Markdown document with knitr, each of the codechunks will be evaluated, and then the code and/or output will beinserted (unless you suppress one or both with chunk options, described below). Ifthe code produces a figure, that figure will be inserted.

An R Markdown document will have often have many code chunks. They areevaluated in order, in a single R session, and the state of thevarious variables in one code chunk are preserved in futurechunks. It’s as if you’d pulled out all of the R code as a single file(and you can dothat, using the purl command in knitr) and thensourceit into R.

Chunk options

The initial line in a code chunk may include various options. Forexample, echo=FALSE indicates that the code will not be shown in thefinal document (though any results/output would still be displayed).

You use results='hide' to hide the results/output (but here the codewould still be displayed).

You use include=FALSE to have the chunk evaluated, but neither thecode nor its output displayed.

If I’m writing a report for a collaborator, I’ll often useinclude=FALSE to suppress all of the code and largely just includefigures.

For figures, you’ll want to use options like fig.width andfig.height. For example:

Note that if include=FALSE, all of the code, results, and figureswill be suppressed. If include=TRUE and results='hide', the resultswill be hidden but figures will still be shown. To hide the figures,use fig.show='hide'.

There arelots of different possible “chunk options”.Each must be real R code, as R will be used to evaluate them. Soresults=hide is wrong; you need results='hide'.

Global chunk options

You may be inclined to use largely the same set of chunk optionsthroughout a document. But it would be a pain to retype those options in every chunk. Thus, you want to set someglobal chunk options at the top of your document.

For example, I might use include=FALSE or at least echo=FALSEglobally for a report to a scientific collaborator who wouldn’t wantto see all of the code. And I might want something like fig.width=12and fig.height=6 if I generally want those sizes for my figures.

I’d set such options by having an initial code chunk like this:

I snuck a few additional options in there: warning=FALSE andmessage=FALSE suppress any R warnings or messages from being included inthe final document, and fig.path='Figs/' makes it so the figurefiles get placed in the Figs subdirectory. (By default, they are notsaved at all.)

Note: the ending slash in Figs/ is important. If you usedfig.path='Figs' then the figures would go in the main directory butwith Figs as the initial part of their names.

The global chunk options become the defaults for the rest of thedocument. Then if you want a particular chunk to have a differentbehavior, for example, to have a different figure height, you’dspecify a different option within that chunk. For example:

In a report to a collaborator, I might use include=FALSE, echo=FALSEas a global option, and then use include=TRUE for the chunks thatproduce figures. Then the code would be suppressed throughout, and any outputwould be suppressed except in the figure chunks (where I usedinclude=TRUE), which would produce just the figures.

Technical aside: In setting the global chunk options withopts_chunk$set(), you’ll need to use knitr:: (or to have firstloaded the knitr package with library(knitr)). As we’ll discussbelow, we’ll use thermarkdown package to processthe document, first with knitr and then withpandoc, andrmarkdown::render() will use knitr::knit() but won’t loadthe knitr package.

Package options

Exponents In R Markdown

Markdown

In addition to the chunk options, there are alsopackage options,set with something like:

I was confused about this at first: I’d use opts_knit$set when Ireally wanted opts_chunk$set. knitr includes a lot of options; ifyou’re getting fancy you may need these package options, but initiallyyou’ll just be using the chunk options and, particularly, the globalchunk options defined via opts_chunk$set. So mostly ignoreopts_knit$set() in favor of opts_chunk$set().

In-line code

A key motivation for knitr isreproducible research:that our results are accompanied by the data and code needed toproduce them.

Thus, your report should never explicitly include numbers that arederived from the data. Don’t write “There are 168 individuals.”Rather, insert a bit of code that, whenevaluated, gives the number of individuals.

That’s the point of the in-line code. You’d write something like this:

Another example:

In R Markdown, in-line code is indicated with `r and `.The bit of R code between them is evaluated and the result inserted.

An important point: you need to be sure that these in-line bits ofcode aren’t split across lines in your document. Othewise you’ll justsee the raw code and not the result that you want.

YAML header

Insert, at the top of your R Markdown document, a bit of text like thefollowing:

The final document will then contain a nicely formated title, alongwith the author name and date. You can include hyperlinks in there:

and even R code:

This is called the YAML header. YAML is asimple text-based format for specifying data, sort of likeJSON but more human-readable.

You can leave off the author and date if you want; you can leave offthe title, too. Actually, you don’t need to include any of this. Butoutput: html_document tells thermarkdown package to convertthe document to html. That’s the default, but you could also useoutput: pdf_document or even output: word_document, in which caseyour document will be converted to a PDF or Word .docx file,respectively.

Rounding

I’m very particular about the rounding of results, and you should be too. If I’ve estimateda correlation coefficient with 1000 data points, I don’t want to see0.9032738. I want 0.90.

You could use the R function round, like this: `r round(cor(x,y), 2)`But that would produce 0.9 instead of 0.90.

One solution is to use the sprintf function, like so:`r sprintf('%.2f', cor(x,y))`. That’s perfectly reasonable,right? Well, it is if you’re a C programmer.

But a problem arises if the value is -0.001. `r sprintf('%.2f', -0.001)`will produce -0.00. I don’t like that, nor doesHilary.

My solution to this problem is themyroundfunctionin my R/broman package.

At the start of my R Markdown document, I’d include:

Subscript In R Markdown

And then later I could write `r myround(cor(x,y), 2)`and it would give 0.90 or 0.00 in the way that I want.

Converting R Markdown to html

Via RStudio

If you use RStudio, the simplest way toconvert an R Markdown document to html is to open the document withinRStudio. (And really, you probably want to create the document inRStudio: click File → New File → R Markdown.)When you open an R Markdown document in RStudio, you’ll seea “Knit HTML” button just above the document. (It’s a particularlycute little button, with a ball of yarn and a knitting needle.) Clickthat, and another window will open, and you’ll see knitr in action,executing each code chunk and each bit of in-line code, to compile the RMarkdown to a Markdown document. This will then be converted to html,with a preview of the result. (The resulting .html file will beplaced in the same directory as your .Rmd file.) You can click“Open in browser” to open the document in your web browser, or“Publish” to publish the document to the web (where it will beviewable by anyone).

Another a nice feature in RStudio: when you open an R Markdowndocument, you’ll see a little question mark button, with links to“Using R Markdown” and to a MarkdownQuick Reference. convenient “Markdown Quick Reference” document: acheat-sheet on the Markdown syntax. Like@StrictlyStat,I seem to visit theMarkdown website almostevery time I’m writing a Markdown document. If I used RStudio, I’dhave easier access to this information.

RStudio is especially useful when you’re first learning knitr and RMarkdown, as it’s easy to create and view the corresponding html file,and you have access to that Markdown Quick Reference.

Via the command line (or GNU make)

To process an R Markdown document, you need thermarkdown package (which inturn will make use of theknitr package plus abunch of other packages), as well aspandoc.

To install the rmarkdown package, use install.packages(rmarkdown).

The simplest way to install pandoc is to just install theRStudio Desktop software,which includes pandoc, and then include pandoc without your PATH.On a Mac, you’d use:

In Windows, you’d include 'c:Program FilesRStudiobinpandoc' inyour Path system environment variable. (For example, seethis page,though it’s a bit ad-heavy.)

To convert your Markdown document to HTML, you’d then use

(Note that in Windows, it’s important to use double-quotes on theoutside and single-quotes inside, rather than the other way around.)

Rather than actually type that line, I include it within aGNU make file, likethis one.(Also see my minimal maketutorial.)

Up next

At this point, I’d recommend going off and playing with R Markdown fora while. Write your next report with R Markdown, even if it takes youa bit longer. Write it using RStudio, wherethe knitting process is easy and you have easy access to that“Markdown Quick Reference”.

Latex In R Markdown

Then, read a bit about figures and tables, mycomments on reproducibility, andperhaps about Knitr with AsciiDoc orKnitr with LaTeX.