Skip to contents

This function generates a Shiny application with modular dittoViz::scatterPlot() components. A module is created for each data frame provided in the named list of data frames.

Usage

dittoViz_scatterPlotApp(data_list)

Arguments

data_list

A named list of data frames for which scatterPlot modules will be created. That is, UI inputs and a scatter plot will be generated for each.

Value

A Shiny app object.

Author

Jared Andrews

Examples

library(VizModules)
data_list <- list("sales" = example_sales, "population" = example_population)
app <- dittoViz_scatterPlotApp(data_list)
if (interactive()) runApp(app)