Skip to contents

Start a Shiny application that allows interactive exploration of simulated step-package Sankey diagrams.

Usage

launch_step_app(df, group_cols = character())

Arguments

df

Data frame containing at least id, step, and package columns describing transitions.

group_cols

Optional character vector of column names that should be exposed as filters in the sidebar.

Value

No return value; the function launches a Shiny application.

Examples

if (interactive()) {
  df <- simulate(20)
  launch_step_app(df)
}