├── .gitignore ├── Bounce ├── README.md ├── server.R └── ui.R ├── Ebola-Dynamic ├── server.R └── ui.R ├── Function-Counter ├── README.md ├── server.R └── ui.R ├── ItemGenerator ├── server.R └── ui.R ├── README.md └── Survey ├── Qlist.csv ├── README.md ├── sample-results.csv ├── server.R └── ui.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/.gitignore -------------------------------------------------------------------------------- /Bounce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Bounce/README.md -------------------------------------------------------------------------------- /Bounce/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Bounce/server.R -------------------------------------------------------------------------------- /Bounce/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Bounce/ui.R -------------------------------------------------------------------------------- /Ebola-Dynamic/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Ebola-Dynamic/server.R -------------------------------------------------------------------------------- /Ebola-Dynamic/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Ebola-Dynamic/ui.R -------------------------------------------------------------------------------- /Function-Counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Function-Counter/README.md -------------------------------------------------------------------------------- /Function-Counter/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Function-Counter/server.R -------------------------------------------------------------------------------- /Function-Counter/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Function-Counter/ui.R -------------------------------------------------------------------------------- /ItemGenerator/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/ItemGenerator/server.R -------------------------------------------------------------------------------- /ItemGenerator/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/ItemGenerator/ui.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/README.md -------------------------------------------------------------------------------- /Survey/Qlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Survey/Qlist.csv -------------------------------------------------------------------------------- /Survey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Survey/README.md -------------------------------------------------------------------------------- /Survey/sample-results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Survey/sample-results.csv -------------------------------------------------------------------------------- /Survey/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Survey/server.R -------------------------------------------------------------------------------- /Survey/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EconometricsBySimulation/Shiny-Demos/HEAD/Survey/ui.R --------------------------------------------------------------------------------