Make a shiny app from a dataset
build_shiny_app(dataset, covariates, outcome_var, data_dictionary = NULL)
dataset |
|
---|---|
covariates |
|
outcome_var |
|
data_dictionary |
This function allows you to build a shiny app for a dataset. For more info, please see the "Making a Burro App" vignette. |
shiny app in a folder
#create a new project/folder in RStudio before you run this library(ggplot2) data(diamonds) covars <- colnames(diamonds) if(interactive()){ burro::build_shiny_app(dataset=diamonds, covariates=covars, outcome_var="cut") }