Skip to content

Commit

Permalink
remove updateFilters button and legend
Browse files Browse the repository at this point in the history
  • Loading branch information
d-callan committed Nov 26, 2023
1 parent b3ddad7 commit a24cade
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions R/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,14 @@ ui <- shiny::fluidPage(
shiny::plotOutput("correlationHistogram", height = "200px"),
shiny::p(),
shiny::numericInput("pValueFilter", shiny::strong("P-Value Threshold:"), 0, min = 0, max = 1),
shiny::plotOutput("pValueHistogram", height = "200px"),
shiny::p(),
shiny::actionButton("updateFilters", "Update Filters"),
shiny::hr(),
shiny::tags$div(id = "legendPlaceholder", "Legend will be displayed here.")
shiny::plotOutput("pValueHistogram", height = "200px")
)
),
shiny::column(9,
tabsetPanel(
type = "tabs",
tabPanel("Network",
bipartiteNetworkOutput("bipartiteNetwork")
bipartiteNetworkOutput("bipartiteNetwork"), # need to add node labels and legend here
),
tabPanel("Table",
DT::DTOutput("correlationMatrix")
Expand Down

0 comments on commit a24cade

Please sign in to comment.