Skip to content

Commit

Permalink
change default pvalue threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
d-callan committed Nov 30, 2023
1 parent ddfbb27 commit 82c8909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ui <- shiny::fluidPage(
shiny::numericInput("correlationFilter", shiny::strong("Correlation Coefficient Threshold:"), 0, min = -1, max = 1),
shiny::plotOutput("correlationHistogram", height = "200px"),
shiny::p(),
shiny::numericInput("pValueFilter", shiny::strong("P-Value Threshold:"), 0, min = 0, max = 1),
shiny::numericInput("pValueFilter", shiny::strong("P-Value Threshold:"), 0.05, min = 0, max = 1),
shiny::plotOutput("pValueHistogram", height = "200px")
)
),
Expand Down

0 comments on commit 82c8909

Please sign in to comment.