├── .gitignore ├── Dashboarding.Rproj ├── README.md ├── Slides ├── DashboardingSlides.Rmd ├── DashboardingSlides.html └── Slide_images │ ├── basic_rmarkdown.png │ ├── iris_head.png │ ├── iris_head_printr.png │ ├── iris_printr.png │ ├── iris_summarytools.png │ ├── printr_after_iris.png │ ├── printr_before_iris.png │ ├── yaml_after.png │ ├── yaml_before.png │ └── yaml_goto.png ├── Tutorials ├── Exporting.Rmd ├── Exporting.html ├── Highcharter-tutorial.Rmd ├── Highcharter-tutorial.html ├── Including-Datasets.Rmd ├── Including-Datasets.html ├── Table-Print-Comparison.Rmd ├── Table-Print-Comparison.html ├── flexdashboard-layout-with-notes.Rmd └── flexdashboard-layout-with-notes.html ├── dashboard_source_folder ├── R │ └── file_export_for_dashboards.R ├── css │ ├── basic_css.css │ ├── faded_teal.css │ ├── starlight-slides_css.css │ └── starlight_css.css └── logos │ └── onica_amazon_small.png ├── index.Rmd └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Dashboarding.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Dashboarding.Rproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /Slides/DashboardingSlides.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/DashboardingSlides.Rmd -------------------------------------------------------------------------------- /Slides/DashboardingSlides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/DashboardingSlides.html -------------------------------------------------------------------------------- /Slides/Slide_images/basic_rmarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/basic_rmarkdown.png -------------------------------------------------------------------------------- /Slides/Slide_images/iris_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/iris_head.png -------------------------------------------------------------------------------- /Slides/Slide_images/iris_head_printr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/iris_head_printr.png -------------------------------------------------------------------------------- /Slides/Slide_images/iris_printr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/iris_printr.png -------------------------------------------------------------------------------- /Slides/Slide_images/iris_summarytools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/iris_summarytools.png -------------------------------------------------------------------------------- /Slides/Slide_images/printr_after_iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/printr_after_iris.png -------------------------------------------------------------------------------- /Slides/Slide_images/printr_before_iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/printr_before_iris.png -------------------------------------------------------------------------------- /Slides/Slide_images/yaml_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/yaml_after.png -------------------------------------------------------------------------------- /Slides/Slide_images/yaml_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/yaml_before.png -------------------------------------------------------------------------------- /Slides/Slide_images/yaml_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Slides/Slide_images/yaml_goto.png -------------------------------------------------------------------------------- /Tutorials/Exporting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Exporting.Rmd -------------------------------------------------------------------------------- /Tutorials/Exporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Exporting.html -------------------------------------------------------------------------------- /Tutorials/Highcharter-tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Highcharter-tutorial.Rmd -------------------------------------------------------------------------------- /Tutorials/Highcharter-tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Highcharter-tutorial.html -------------------------------------------------------------------------------- /Tutorials/Including-Datasets.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Including-Datasets.Rmd -------------------------------------------------------------------------------- /Tutorials/Including-Datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Including-Datasets.html -------------------------------------------------------------------------------- /Tutorials/Table-Print-Comparison.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Table-Print-Comparison.Rmd -------------------------------------------------------------------------------- /Tutorials/Table-Print-Comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/Table-Print-Comparison.html -------------------------------------------------------------------------------- /Tutorials/flexdashboard-layout-with-notes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/flexdashboard-layout-with-notes.Rmd -------------------------------------------------------------------------------- /Tutorials/flexdashboard-layout-with-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/Tutorials/flexdashboard-layout-with-notes.html -------------------------------------------------------------------------------- /dashboard_source_folder/R/file_export_for_dashboards.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/dashboard_source_folder/R/file_export_for_dashboards.R -------------------------------------------------------------------------------- /dashboard_source_folder/css/basic_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/dashboard_source_folder/css/basic_css.css -------------------------------------------------------------------------------- /dashboard_source_folder/css/faded_teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/dashboard_source_folder/css/faded_teal.css -------------------------------------------------------------------------------- /dashboard_source_folder/css/starlight-slides_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/dashboard_source_folder/css/starlight-slides_css.css -------------------------------------------------------------------------------- /dashboard_source_folder/css/starlight_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/dashboard_source_folder/css/starlight_css.css -------------------------------------------------------------------------------- /dashboard_source_folder/logos/onica_amazon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/dashboard_source_folder/logos/onica_amazon_small.png -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maloriejhughes/Dashboarding-Tutorial/HEAD/index.html --------------------------------------------------------------------------------