Interactive Shiny documents in RMarkdown

As we saw in the previous chapter, interactive documents can be made very easily using R Markdown in RStudio. Even if you are not using RStudio, it is a simple matter of writing an R Markdown file with Shiny code in it. If you do not use RStudio, you will need an up-to-date version of Pandoc (the version in many Linux distributions is not recent enough). For more on installing Pandoc on Linux, Windows, or Mac, go to pandoc.org/installing.html.

RMarkdown is based on Markdown, which is a markup language designed to be easily converted into HTML, but which looks much more like a natural document in its raw format, as opposed to HTML or other markup languages (such as LaTeX), which have more prominent and strange-looking tags. For example, the Markdown syntax for a bulleted list is as follows:

* First bullet 
* Second bullet 
* Third bullet 

The HTML equivalent is as follows:

<ul> 
  <li>First bullet</li> 
  <li>Second bullet</li> 
  <li>Third bullet</li> 
</ul> 

Tagging markup in LaTeX is even more verbose. R Markdown uses Markdown conventions, but allows code chunks of R to be run within the document, and allows text and graphical output to be generated from those chunks. Coupled with Pandoc (the Swiss Army knife of document rendering), Markdown and R Markdown can be rendered into many formats, including XHTML, HTML, epub, LaTeX, .pdf, .doc, .docx, and .odt.

R Markdown with Shiny goes one step further and allows users to interact with the document on a web page.

Let's build a minimal example. If you are using RStudio, you will be given a boilerplate Shiny Markdown document to work from, which makes things a bit easier, but here we'll ignore that and build it from scratch. The code is available at goo.gl/N7Qkv8.

Let's go through each part of the document. Navigate to File | New File | R Markdown | New document and enter the following code:

# Example RMarkdown document 
This is an interactive document written in *markdown*. As you can see it is easy to include: 
1. Ordered lists 
2. *Italics* 
3. **Bold type** 
4. Links to [Documentation](http://example.com/) 
## This is heading two 
Perhaps this introduces the visualisation below. 

This is the document part of the Shiny document, written in Markdown. The following conventions can be noted:

  • The # character is used for headings at level 1, and ## for headings at level 2
  • Numbered (ordered) lists are designated with 1, 2, and so on
  • Italics are given with *single asterisks* and a bold format is given with **double asterisks**
  • Links are represented using the format of (http://example.com/) 

Next follows a code chunk, beginning with ```{r} and ending with ```. The echo=FALSE argument is added to the chunk to prevent the printing of the R code. You will usually want to do this, but not on every occasion—for example, when producing a teaching resource:

```{r, echo=FALSE} sliderInput("sampleSize", label = "Size of sample", min = 10, max = 100, value = 50, step = 1) renderPlot({ hist(runif(input$sampleSize)) }) ``` 

Straight away, we can see some of the design principles in Shiny applications. We can see the separation of input code, sliderInput(), and output code, renderPlot(). The sliderInput() function, as the name suggests, defines an input widget that allows the user to select from a range of numeric values, in this case, between 10 and 100, with a starting value of 50 and a step increase of 1. The renderPlot() function produces a reactive plot using whatever functions it finds within itself (in this case, the graphical function hist(), which draws a histogram).

As we already covered in Chapter 1, Beginning R and Shiny, reactive outputs change when their inputs change. The runif(n) function produces n random numbers between 0 and 1 (with default arguments). As we can see in this case, n is given by input$sampleSize. Inputs are accessed very simply in Shiny in this format; you can see that we named the input sampleSize within the sliderInput() function, which places the selected value from the widget in input$sampleSize (naming it myInput places the value in input$myInput).

Therefore, runif() generates random numbers in the quantity of input$sampleSize, hist() plots them with a histogram, and renderPlot({}) tells Shiny that the output within is reactive and should be updated whenever its inputs (in this case, just input$sampleSize) change.

The final result will look like the following screenshot:

That's it! You made your first Shiny application. It's that easy. Now, let's consider building fully fledged applications, starting with a minimal example and building up from there.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset