├── .gitignore ├── README.md ├── app ├── app.R ├── helpers.R └── www │ ├── budget.csv │ └── style.css ├── assets ├── drill-down-annotated.svg ├── rstudio-white.png ├── style.css └── title.jpg ├── presentation ├── presentation.Rmd └── presentation.html └── rstudio-conf-2018.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/README.md -------------------------------------------------------------------------------- /app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/app/app.R -------------------------------------------------------------------------------- /app/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/app/helpers.R -------------------------------------------------------------------------------- /app/www/budget.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/app/www/budget.csv -------------------------------------------------------------------------------- /app/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/app/www/style.css -------------------------------------------------------------------------------- /assets/drill-down-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/assets/drill-down-annotated.svg -------------------------------------------------------------------------------- /assets/rstudio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/assets/rstudio-white.png -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/assets/style.css -------------------------------------------------------------------------------- /assets/title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/assets/title.jpg -------------------------------------------------------------------------------- /presentation/presentation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/presentation/presentation.Rmd -------------------------------------------------------------------------------- /presentation/presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/presentation/presentation.html -------------------------------------------------------------------------------- /rstudio-conf-2018.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bborgesr/rstudio-conf-2018/HEAD/rstudio-conf-2018.Rproj --------------------------------------------------------------------------------