roxygen
This chapter is about using the flexdashboard package to create static dashboards with R.
flexdashboard
library(dplyr) library(flexdashboard)
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.
set.seed(123) df <- tibble( x = rnorm(26), y = letters )