mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 09:59:39 +02:00
Baseline plot now updates on changed input data
This commit is contained in:
parent
33c700ca5f
commit
7e90d38380
1 changed files with 7 additions and 2 deletions
|
@ -218,7 +218,10 @@ server <- function(input, output, session) {
|
|||
id = "modal_column",
|
||||
data_r = reactive(rv$data)
|
||||
)
|
||||
shiny::observeEvent(data_modal_r(), rv$data <- data_modal_r())
|
||||
shiny::observeEvent(
|
||||
data_modal_r(), {
|
||||
rv$data <- data_modal_r()
|
||||
})
|
||||
|
||||
######### Show result
|
||||
|
||||
|
@ -227,7 +230,7 @@ server <- function(input, output, session) {
|
|||
# data <- rv$data
|
||||
toastui::datagrid(
|
||||
# data = rv$data # ,
|
||||
data = data_filter()
|
||||
data = data_filter(),
|
||||
# bordered = TRUE,
|
||||
# compact = TRUE,
|
||||
# striped = TRUE
|
||||
|
@ -467,6 +470,8 @@ server <- function(input, output, session) {
|
|||
list(
|
||||
shiny::reactive(rv$list$data),
|
||||
shiny::reactive(rv$data),
|
||||
shiny::reactive(rv$data_original),
|
||||
data_filter(),
|
||||
input$strat_var,
|
||||
input$include_vars,
|
||||
input$add_p
|
||||
|
|
Loading…
Add table
Reference in a new issue