├── .gitignore ├── LICENSE.md ├── README.md ├── _config.yml ├── data ├── chicago.csv ├── cities.csv ├── get_data.R ├── sedona.csv └── weather.csv ├── demos ├── .gitignore ├── demo01.R ├── demo02.Rmd ├── demo03-1.Rmd ├── demo03-2.Rmd ├── demo04.Rmd ├── demo05.Rmd ├── demo06.Rmd ├── demo07-1.R ├── demo07-2.R ├── demo08.R ├── demo09.Rmd ├── demo10.R ├── demo11.R └── demo12.R ├── exercises ├── .gitignore ├── ex01.R ├── ex02.Rmd ├── ex03.Rmd ├── ex04.Rmd ├── ex05.Rmd ├── ex06.R ├── ex06.Rmd ├── ex07.Rmd ├── ex08app │ └── .gitignore └── solutions │ ├── ex01_soln.R │ ├── ex02_soln.Rmd │ ├── ex04_soln.Rmd │ ├── ex05_soln.Rmd │ ├── ex06_soln.R │ ├── ex07_soln.Rmd │ └── ex08app_soln │ ├── .gitignore │ ├── data │ └── weather.csv │ └── demo11.R ├── posit-conf-2023-day-2.Rproj └── slides ├── 01-Welcome.html ├── 01-Welcome.qmd ├── 02-flexdashboard.html ├── 02-flexdashboard.qmd ├── 03-shinydashboard.html ├── 03-shinydashboard.qmd ├── 04-bslib.html ├── 04-bslib.qmd ├── 05-theming.html ├── 05-theming.qmd ├── 06-publishing.html ├── 06-publishing.qmd ├── 07-wrap_up.html ├── 07-wrap_up.qmd ├── Makefile ├── _extensions └── gadenbuie │ └── revealjs-text-resizer │ ├── _extension.yml │ └── revealjs-text-resizer.js ├── custom.scss └── images ├── Hyatt-Regency-Chicago.webp ├── cloud_assignment.png ├── cloud_session.png ├── colin-rundel.jpeg ├── colin-rundel.png ├── flexdashboard-layout-cols.png ├── flexdashboard-layout-default.png ├── flexdashboard-layout-rows.png ├── flexdashboard-layout-sidebar.png ├── flexdashboard-layout-tabset.png ├── flexdashboard_gauges.png ├── flexdashboard_value-box.png ├── garrick-social-profile.jpeg ├── hand.png ├── publish_button.png ├── shiny.png ├── shinydashboard_box.png ├── shinydashboard_box2.png ├── shinydashboard_infobox.png ├── shinydashboard_layout-cols.png ├── shinydashboard_layout-mixed.png ├── shinydashboard_layout-rows.png ├── shinydashboard_layout.png ├── shinydashboard_menu-messages.png ├── shinydashboard_menu-notifications.png ├── shinydashboard_menu-tasks.png ├── shinydashboard_row_col_layout.png ├── shinydashboard_row_col_layout_anno.png └── shinydashboard_valuebox.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/_config.yml -------------------------------------------------------------------------------- /data/chicago.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/data/chicago.csv -------------------------------------------------------------------------------- /data/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/data/cities.csv -------------------------------------------------------------------------------- /data/get_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/data/get_data.R -------------------------------------------------------------------------------- /data/sedona.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/data/sedona.csv -------------------------------------------------------------------------------- /data/weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/data/weather.csv -------------------------------------------------------------------------------- /demos/.gitignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /demos/demo01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo01.R -------------------------------------------------------------------------------- /demos/demo02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo02.Rmd -------------------------------------------------------------------------------- /demos/demo03-1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo03-1.Rmd -------------------------------------------------------------------------------- /demos/demo03-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo03-2.Rmd -------------------------------------------------------------------------------- /demos/demo04.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo04.Rmd -------------------------------------------------------------------------------- /demos/demo05.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo05.Rmd -------------------------------------------------------------------------------- /demos/demo06.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo06.Rmd -------------------------------------------------------------------------------- /demos/demo07-1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo07-1.R -------------------------------------------------------------------------------- /demos/demo07-2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo07-2.R -------------------------------------------------------------------------------- /demos/demo08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo08.R -------------------------------------------------------------------------------- /demos/demo09.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo09.Rmd -------------------------------------------------------------------------------- /demos/demo10.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo10.R -------------------------------------------------------------------------------- /demos/demo11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo11.R -------------------------------------------------------------------------------- /demos/demo12.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/demos/demo12.R -------------------------------------------------------------------------------- /exercises/.gitignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /exercises/ex01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex01.R -------------------------------------------------------------------------------- /exercises/ex02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex02.Rmd -------------------------------------------------------------------------------- /exercises/ex03.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex03.Rmd -------------------------------------------------------------------------------- /exercises/ex04.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex04.Rmd -------------------------------------------------------------------------------- /exercises/ex05.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex05.Rmd -------------------------------------------------------------------------------- /exercises/ex06.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex06.R -------------------------------------------------------------------------------- /exercises/ex06.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex06.Rmd -------------------------------------------------------------------------------- /exercises/ex07.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/ex07.Rmd -------------------------------------------------------------------------------- /exercises/ex08app/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/solutions/ex01_soln.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex01_soln.R -------------------------------------------------------------------------------- /exercises/solutions/ex02_soln.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex02_soln.Rmd -------------------------------------------------------------------------------- /exercises/solutions/ex04_soln.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex04_soln.Rmd -------------------------------------------------------------------------------- /exercises/solutions/ex05_soln.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex05_soln.Rmd -------------------------------------------------------------------------------- /exercises/solutions/ex06_soln.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex06_soln.R -------------------------------------------------------------------------------- /exercises/solutions/ex07_soln.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex07_soln.Rmd -------------------------------------------------------------------------------- /exercises/solutions/ex08app_soln/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/solutions/ex08app_soln/data/weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex08app_soln/data/weather.csv -------------------------------------------------------------------------------- /exercises/solutions/ex08app_soln/demo11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/exercises/solutions/ex08app_soln/demo11.R -------------------------------------------------------------------------------- /posit-conf-2023-day-2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/posit-conf-2023-day-2.Rproj -------------------------------------------------------------------------------- /slides/01-Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/01-Welcome.html -------------------------------------------------------------------------------- /slides/01-Welcome.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/01-Welcome.qmd -------------------------------------------------------------------------------- /slides/02-flexdashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/02-flexdashboard.html -------------------------------------------------------------------------------- /slides/02-flexdashboard.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/02-flexdashboard.qmd -------------------------------------------------------------------------------- /slides/03-shinydashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/03-shinydashboard.html -------------------------------------------------------------------------------- /slides/03-shinydashboard.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/03-shinydashboard.qmd -------------------------------------------------------------------------------- /slides/04-bslib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/04-bslib.html -------------------------------------------------------------------------------- /slides/04-bslib.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/04-bslib.qmd -------------------------------------------------------------------------------- /slides/05-theming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/05-theming.html -------------------------------------------------------------------------------- /slides/05-theming.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/05-theming.qmd -------------------------------------------------------------------------------- /slides/06-publishing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/06-publishing.html -------------------------------------------------------------------------------- /slides/06-publishing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/06-publishing.qmd -------------------------------------------------------------------------------- /slides/07-wrap_up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/07-wrap_up.html -------------------------------------------------------------------------------- /slides/07-wrap_up.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/07-wrap_up.qmd -------------------------------------------------------------------------------- /slides/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/Makefile -------------------------------------------------------------------------------- /slides/_extensions/gadenbuie/revealjs-text-resizer/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/_extensions/gadenbuie/revealjs-text-resizer/_extension.yml -------------------------------------------------------------------------------- /slides/_extensions/gadenbuie/revealjs-text-resizer/revealjs-text-resizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/_extensions/gadenbuie/revealjs-text-resizer/revealjs-text-resizer.js -------------------------------------------------------------------------------- /slides/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/custom.scss -------------------------------------------------------------------------------- /slides/images/Hyatt-Regency-Chicago.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/Hyatt-Regency-Chicago.webp -------------------------------------------------------------------------------- /slides/images/cloud_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/cloud_assignment.png -------------------------------------------------------------------------------- /slides/images/cloud_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/cloud_session.png -------------------------------------------------------------------------------- /slides/images/colin-rundel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/colin-rundel.jpeg -------------------------------------------------------------------------------- /slides/images/colin-rundel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/colin-rundel.png -------------------------------------------------------------------------------- /slides/images/flexdashboard-layout-cols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard-layout-cols.png -------------------------------------------------------------------------------- /slides/images/flexdashboard-layout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard-layout-default.png -------------------------------------------------------------------------------- /slides/images/flexdashboard-layout-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard-layout-rows.png -------------------------------------------------------------------------------- /slides/images/flexdashboard-layout-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard-layout-sidebar.png -------------------------------------------------------------------------------- /slides/images/flexdashboard-layout-tabset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard-layout-tabset.png -------------------------------------------------------------------------------- /slides/images/flexdashboard_gauges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard_gauges.png -------------------------------------------------------------------------------- /slides/images/flexdashboard_value-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/flexdashboard_value-box.png -------------------------------------------------------------------------------- /slides/images/garrick-social-profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/garrick-social-profile.jpeg -------------------------------------------------------------------------------- /slides/images/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/hand.png -------------------------------------------------------------------------------- /slides/images/publish_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/publish_button.png -------------------------------------------------------------------------------- /slides/images/shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shiny.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_box.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_box2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_box2.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_infobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_infobox.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_layout-cols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_layout-cols.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_layout-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_layout-mixed.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_layout-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_layout-rows.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_layout.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_menu-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_menu-messages.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_menu-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_menu-notifications.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_menu-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_menu-tasks.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_row_col_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_row_col_layout.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_row_col_layout_anno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_row_col_layout_anno.png -------------------------------------------------------------------------------- /slides/images/shinydashboard_valuebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/shiny-r-dashboard/HEAD/slides/images/shinydashboard_valuebox.png --------------------------------------------------------------------------------