Aaron Williams [awilliams@urban.org]
Alex Engler [aengler@urban.org]
6 years of mean income estimates
19 Social Security reforms modelled in DYNASIM
4 types of income
64 demographic levels
2 baselines
2 scales
3 comparisons
6 X 19 x 4 x 64 x 2 x 2 x 3 = 350,208 means (observations)
19 x 4 x 64 x 2 x 2 x 3 = 58,368 combination of categorical variables
R Shiny extends directly to an analysis tool:
PAG Bayesian Analytical ModelBefore starting any work for Urban.org, please contact:
library(shiny)
ui <- fluidPage()
server <- function(input, output){}
shinyApp(ui = ui, server = server)
library()
data sets
Runs Once
*Input() functions (create input$<id> objects)
*Output() functions (display output$<id> objects)
Reactivity
render*({}) functions (create output$<id> objects)
Commas
Parentheses
renderPlot({ })
inputId not inputID
quoted and unquoted objects
Credit to: Dave D'Orio
To request an R package for the Shiny server, please request it using GitHub issues
So what do you need to know?
Aaron Williams (awilliams@urban.org)