Skip to content

Commit

Permalink
Eliminado la parte de shiny.
Browse files Browse the repository at this point in the history
Láminas de agradecimiento
  • Loading branch information
nanounanue committed Aug 19, 2015
1 parent 6f39e1d commit 07ebc7f
Showing 1 changed file with 2 additions and 22 deletions.
24 changes: 2 additions & 22 deletions WWCR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -893,26 +893,6 @@ Además el documento que estás viendo utiliza tecnología de `RStudio` llamada

Puedes aprender más en esta liga [Interactive Documents](http://rmarkdown.rstudio.com/authoring_shiny.html).

# Productificar
# ¿Preguntas?

## Producto de datos

Es posible utilizar en el documento interactividad mediante `shiny`. La salida será actualizada automáticamente cuando los elementos de interacción cambien.

```{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(accidents$injured, probability = TRUE, breaks = as.numeric(input$n_breaks),
xlab = "Duration (minutes)", main = "Geyser eruption duration")
dens <- density(accidents$injured)
lines(dens, col = "blue")
})
```
# ¡Gracias!

0 comments on commit 07ebc7f

Please sign in to comment.