explore_data.Rd
Explore a dataaset using a simple app
explore_data(dataset, covariates = NULL, outcome_var, data_dictionary = NULL)
dataset |
|
---|---|
covariates |
|
outcome_var |
|
data_dictionary |
Each menu item covers a different part of exploratory data analysis with simple visualizations for discussion. The tabs are automatically updated with variables depending on the variable types. |
A Shiny App object that can either be run in the console or on an external shiny server such as shinyapps.io. For building the actual app.R, see build_shiny_app
library(ggplot2) data(diamonds) if(interactive()){ burro::explore_data(diamonds, outcome_var="cut") } #need another example here