Skip to content

Instantly share code, notes, and snippets.

@shaun-jacks
Last active February 18, 2019 07:45
Show Gist options
  • Save shaun-jacks/03bf9f3bc51bb79d54bcd8fa7cdfaf31 to your computer and use it in GitHub Desktop.
Save shaun-jacks/03bf9f3bc51bb79d54bcd8fa7cdfaf31 to your computer and use it in GitHub Desktop.
Initialize Reactive Values to dynamically control ui in R Shiny Vision project
values <- reactiveValues(
analysis_stage = 1, # save stage of ui
file_uploaded = F, # was file uploaded?
analysis_selected = F, # was an analysis type selected?
warning_inputs = "" # initial warning message
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment