Casi di studio: creare applicazioni web con Shiny in R
Dean Attali
Shiny Consultant
Dataset
+ Ambiente interattivo
+ Visualizza dati
+ Filtra dati
+ Scarica dati
= App Shiny
| country | continent | year | lifeExp | pop | gdpPercap |
|---|---|---|---|---|---|
| Afghanistan | Asia | 1952 | 28.801 | 8425333 | 779.445315 |
| Afghanistan | Asia | 1957 | 30.332 | 9240934 | 820.85303 |
| Afghanistan | Asia | 1962 | 31.997 | 10267083 | 853.10071 |
| Afghanistan | Asia | 1967 | 34.02 | 11537966 | 836.197138 |
| Afghanistan | Asia | 1972 | 36.088 | 13079460 | 739.981106 |
| Afghanistan | Asia | 1977 | 38.438 | 14880372 | 786.11336 |
| Afghanistan | Asia | 1982 | 39.854 | 12881816 | 978.011439 |
| Afghanistan | Asia | 1987 | 40.822 | 13867957 | 852.39595 |
| Afghanistan | Asia | 1992 | 41.674 | 16317921 | 649.34140 |
| Afghanistan | Asia | 1997 | 41.763 | 22227415 | 635.34135 |
Le tabelle sono output
tableOutput("my_table")
output$my_table <- renderTable({
gapminder
})
Gli input possono filtrare
selectInput("country", "Country",
choices = levels(gapminder$country))
output$my_table <- renderTable({
subset(gapminder, country == input$country)
})
L'argomento choices di selectInput() può essere qualsiasi lista di stringhe
choices può essere un sottoinsieme della variabileselectInput("country", "Country",
choices = levels(gapminder$country)[1:10])
choices può essere ampliato per aggiungere nuovi valoriselectInput("country", "Country",
choices = c("any", levels(gapminder$country)))
Casi di studio: creare applicazioni web con Shiny in R