├── .gitignore ├── Jo Gee.csv ├── John Doe.csv ├── Makefile ├── README.Rmd ├── README.html ├── README.md ├── app.R ├── dynshiny.Rproj ├── postprocess.R ├── screen1.png └── screen2.png /.gitignore: -------------------------------------------------------------------------------- 1 | /app.R.bak 2 | .Rproj.user 3 | -------------------------------------------------------------------------------- /Jo Gee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/Jo Gee.csv -------------------------------------------------------------------------------- /John Doe.csv: -------------------------------------------------------------------------------- 1 | id,role 2 | 1,CEO 3 | 2,CTO 4 | 3,COO 5 | 4,CMO 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/Makefile -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/README.md -------------------------------------------------------------------------------- /app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/app.R -------------------------------------------------------------------------------- /dynshiny.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/dynshiny.Rproj -------------------------------------------------------------------------------- /postprocess.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/postprocess.R -------------------------------------------------------------------------------- /screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/screen1.png -------------------------------------------------------------------------------- /screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/dynshiny/HEAD/screen2.png --------------------------------------------------------------------------------