Create an example Modular radarPlot Shiny Application
Source:R/radarPlot_module_app.R
radarPlotApp.RdThis function generates a Shiny application with modular radarPlot components. The app features a Data Import section for uploading data, a Data Table for filtering the active dataset, and a Plot area for configuring and displaying an interactive radar plot.
Details
When data_list is not provided (or NULL), the app launches with
example_skills as an example dataset. Uploaded data files are added
to the available datasets and can be selected for plotting. If an uploaded
file shares a name with an existing dataset, the existing one is overwritten
with a warning.
This is a convenience wrapper around createModuleApp().
Examples
library(VizModules)
# Launch with default example data:
app <- radarPlotApp()
if (interactive()) runApp(app)
# Launch with custom data:
skills <- data.frame(
entity = c(
rep("Player A", 6),
rep("Player B", 6),
rep("Player C", 6),
rep("Player D", 6)
),
category = rep(c("Pace", "Shooting", "Passing", "Dribbling", "Defending", "Physical"), 4),
value = c(
99, 89, 80, 92, 36, 78,
89, 97, 65, 72, 45, 95,
76, 86, 94, 86, 64, 78,
62, 60, 71, 63, 94, 91
)
)
app2 <- radarPlotApp(list("skills" = skills))
if (interactive()) runApp(app2)