class: center, middle, inverse, title-slide .title[ # Interactive visualization ] .author[ ### INFO 5940
Cornell University ] --- class: inverse, middle # Interactive visualizations with Shiny --- ## Interactive visualizations with Shiny We will build an app with - Data pre-processing - Dynamic UI elements - Linked brushing --- class: center, middle [https://bensoltoff.shinyapps.io/manager-survey/](https://bensoltoff.shinyapps.io/manager-survey/) <iframe src="https://bensoltoff.shinyapps.io/manager-survey/?showcase=0" width="80%" height="550px" data-external="1"></iframe> --- class: middle .large[.hand[livecoding]] .task[ ```r usethis::use_course("cis-ds/shiny") ``` - Navigate to the `manager-survey-server` folder, and launch the app by opening the `app.R` file and clicking on *Run App*. This includes our completed UI plus starter code for the basic plots in the app. ] (See next slide for code developed during live coding session) --- class: middle The code for the app can be found [here](https://github.com/cis-ds/course-site/blob/main/static/slides/interactive-visualization/manager-survey/app.R).