Skip to content

Commit

Permalink
fix: change order of output, make input_mean field dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
Corneel den Hartogh committed Aug 14, 2023
1 parent 8f4cd85 commit 88d96fb
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions R/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@ app_ui <- function() {
# Dropdown for choosing the dependent variable
shiny::uiOutput("dependent_var_dropdown"),

# Text below the dropdowns
shiny::textOutput("dependent_var_text"),

# Radio button for choosing paired or unpaired
shiny::radioButtons("paired_unpaired", "Choose paired or unpaired:", choices = c("Paired", "Unpaired")),

# Dropdown for choosing the independent variable
shiny::uiOutput("independent_var_dropdown"),

# Input field for mean (hidden initially)
shiny::textInput("input_mean", "Input mean:", value = ""),

# Text below the dropdowns
shiny::textOutput("dependent_var_text"),
shiny::textOutput("independent_var_text"), # New output element for the independent variable text

# Input field for mean (hidden initially)
shiny::uiOutput("input_mean"),

# New dropdown for selecting statistical test
shiny::uiOutput("statistical_test_dropdown"),

Expand Down

0 comments on commit 88d96fb

Please sign in to comment.