16 Flexdashboard

16.1 ⭐️Overview

This chapter is about using the flexdashboard package to create static dashboards with R.

16.2 🌎Useful websites

16.3 📦Load packages

library(dplyr)
library(flexdashboard)

16.4 Tips

Think about coaching Steph with with DETECT dashboard:

  • Don’t start with a dashboard. Start by creating the tables/graphs you want.

  • Don’t clean the data in the dashboard Rmd file.

16.5 🔢Simulate data

set.seed(123)
df <- tibble(
  x = rnorm(26),
  y = letters
)