<!--
%\VignetteEngine{knitr::knitr}
%\VignetteIndexEntry{E3: Shiny}
-->
`r knitr::opts_chunk$set(tidy=FALSE)`

# Interactive applications with shiny

Very easy to use, [tutorial available][shiny]

Local example
```{r shiny-dir, eval=FALSE}
library(shiny)
appDir <- system.file(package="UnderstandingRBioc", "shiny", 
    "AnnotationTable")
runApp(appDir)
```

Check out files:
- `global.R`: functionality used by both user interface and client
- `ui.R`: user interface specification
- `server.R`: server interface

[shiny]: http://www.rstudio.com/shiny/
