Created
July 22, 2014 20:20
-
-
Save trestletech/4d90843521e1d69060a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "ShinyPres" | |
runtime: shiny | |
output: ioslides_presentation | |
--- | |
## Shiny Presentation | |
This R Markdown presentation is made interactive using Shiny. The viewers of the presentation can change the assumptions underlying what's presented and see the results immediately. | |
To learn more, see [Interative Documents](http://rmarkdown.rstudio.com/authoring_shiny.html). | |
## Slide with Interactive Plot | |
```{r, echo=FALSE} | |
inputPanel( | |
selectInput("n_breaks", label = "Number of bins:", | |
choices = c(10, 20, 35, 50), selected = 20), | |
sliderInput("bw_adjust", label = "Bandwidth adjustment:", | |
min = 0.2, max = 2, value = 1, step = 0.2) | |
) | |
renderPlot({ | |
hist(faithful$eruptions, probability = TRUE, breaks = as.numeric(input$n_breaks), | |
xlab = "Duration (minutes)", main = "Geyser eruption duration") | |
dens <- density(faithful$eruptions, adjust = input$bw_adjust) | |
lines(dens, col = "blue") | |
}) | |
``` | |
## Embedded app slide | |
```{r, echo=FALSE} | |
shinyAppDir( | |
system.file("examples/06_tabsets", package="shiny"), | |
options=list( | |
width="100%", height=550 | |
) | |
) | |
``` | |
## Slide with Bullets | |
- Bullet 1 | |
- Bullet 2 | |
- Bullet 3 | |
## Slide with R Code and Output | |
```{r} | |
summary(cars) | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment