-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtab_inspect.R
More file actions
972 lines (811 loc) · 45.7 KB
/
tab_inspect.R
File metadata and controls
972 lines (811 loc) · 45.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
# UI and server module for "Inspect" tab.
#
# Sisi Huang <sisi.huang@wzb.eu>
# Markus Konrad <markus.konrad@wzb.eu>
# Clara Bicalho <clara.bicalho@wzb.eu>
#
# Dec. 2018
#
source('inspect_helpers.R')
# -------------- config --------------
diagnosis_table_opts <- list(searching = FALSE,
ordering = FALSE,
paging = TRUE,
pageLength = 10,
info = FALSE,
lengthChange = FALSE,
scrollX = TRUE)
# -------------- UI --------------
inspectTabUI <- function(id, label = 'Inspect') {
nspace <- NS(id)
nspace_design <- NS('tab_design')
# "Inspect" tab
material_tab_content(
tab_id = id,
material_row(
material_column( # left: design parameters for comparison
width = 3,
material_card("Compare design parameters",
conditionalPanel(paste0("output['", nspace_design('design_loaded'), "'] != ''"),
uiOutput(nspace("param_input_messages")),
uiOutput(nspace("compare_design_parameters")) # display not-fixed parameters of a design / allow to define sequences
),
conditionalPanel(paste0("output['", nspace_design('design_loaded'), "'] == ''"),
p('Load a design first')
)
)
),
material_column( # center: inspection output
width = 6,
bsCollapse(id = nspace('inspect_sections_simconf_container'),
bsCollapsePanel('Configure simulations',
checkboxInput(nspace('simconf_force_rerun'), label = 'Always re-run simulations (disable cache)'),
numericInput(nspace("simconf_sim_num"), label = "Num. of simulations",
value = default_diag_sims,
min = 1, max = 1000, step = 1),
numericInput(nspace("simconf_bootstrap_num"), label = "Num. of bootstraps",
value = default_diag_bootstrap_sims,
min = 1, max = 1000, step = 1))),
uiOutput(nspace("plot_info")),
conditionalPanel(paste0("output['", nspace('all_design_args_fixed'), "'] === false"),
material_card("Diagnostic plots",
uiOutput(nspace('plot_message')),
div(actionButton(nspace('update_plot'), 'Run diagnoses'), style = "margin-bottom:10px"),
uiOutput(nspace('plot_output')),
downloadButton(nspace("download_plot"), label = "Download plot", disabled = "disabled"),
downloadButton(nspace("download_plot_code"), label = "Download plot code", disabled = "disabled")
),
bsCollapse(id = nspace('inspect_sections_container'),
bsCollapsePanel('Diagnosis',
uiOutput(nspace("section_diagnosands_message")),
dataTableOutput(nspace("section_diagnosands_table")),
checkboxInput(nspace("reshape_diagnosands"),
label = "Convert to unformatted table"),
downloadButton(nspace("section_diagnosands_download_subset"),
label = "Download above table", disabled = "disabled"),
downloadButton(nspace("section_diagnosands_download_full"),
label = "Download full diagnosands table", disabled = "disabled"))
)
),
conditionalPanel(paste0("output['", nspace('all_design_args_fixed'), "'] === true"),
material_card("Diagnostic plots",
HTML('<p>Diagnosis plot not available since all parameters were set to <i>fixed</i>.</p>'),
actionButton(nspace('update_plot_all_fixed'), 'Run single design diagnosis'),
uiOutput(nspace("single_diagnosands_message")),
dataTableOutput(nspace("single_diagnosands_table"))
)
)
),
material_column( # right: plot configuration
width = 3,
uiOutput(nspace("plot_conf"))
)
)
)
}
# -------------- server --------------
bookmark_store_react_objects <- c('cur_design_id',
'diagnosands',
'diagnosands_cached',
'diagnosands_call',
'insp_args_used_in_plot',
'captured_errors')
inspectTab <- function(input, output, session, design_tab_proxy) {
# -------------- reactive values definition --------------
react <- reactiveValues(
cur_design_id = NULL, # current design name used in inspection (coming from design tab)
diagnosands = NULL, # diagnosands for current plot in "inspect" tab
diagnosands_cached = FALSE, # records whether current diagnosand results came from cache
diagnosands_call = NULL, # a closure that actually calculates the diagnosands, valid for current design
insp_args_used_in_plot = NULL, # last used design parameters used in plot
insp_args_varying = character(), # arguments that are varying
insp_args_changed = character(), # arguments that were changed in the inspector by the user
insp_args_set_after_tab_switch = FALSE, # records if the the above vector was just set after switching to this tab again
captured_errors = NULL, # errors to display
custom_state = list(), # additional state values for bookmarking
restoring_state = NULL # while restoring from bookmark, this holds the saved input values
)
# -------------- helper functions --------------
# Run diagnoses using inspection arguments `insp_args`
run_diagnoses_using_inspection_args <- function(insp_args, advance_progressbar = 0) {
isolate({
if (length(input$plot_conf_diag_param_param) == 0) {
diag_param_alpha <- 0.05
} else {
diag_param_alpha <- input$plot_conf_diag_param_param
}
# run diagnoses. if errors occur, write them to "error_msg" element in result list
diag_res <- tryCatch({
res <- run_diagnoses(design_tab_proxy$react$design, insp_args,
sims = input$simconf_sim_num,
bootstrap_sims = input$simconf_bootstrap_num,
diagnosands_call = react$diagnosands_call(diag_param_alpha),
use_cache = !input$simconf_force_rerun,
advance_progressbar = advance_progressbar,
n_diagnosis_workers = n_diagnosis_workers)
res$error_msg <- NULL
res
}, warning = function(exc) {
list(error_msg = conditionMessage(exc))
}, error = function(exc) {
list(error_msg = conditionMessage(exc))
})
})
diag_res
}
# set the names of arguments which were changed by the user.
# this is evoked from "outside" from app.R once the user switches from design to inspect tab
set_changed_args <- function(changed_args) {
react$insp_args_changed <- changed_args
react$insp_args_set_after_tab_switch <- TRUE
}
# -------------- reactive functions --------------
# reactive function to run diagnoses and return the results once "Update plot" is clicked
get_diagnoses_for_plot <- eventReactive(input$update_plot, {
req(design_tab_proxy$react$design, design_tab_proxy$react$design_argdefinitions)
# in case re-running the diagnoses is not required, directly return the result from the
# previous diagnoses saved to "react"
if (!rerun_diagnoses_required()) {
return(list(
results = list(
diagnosands_df_for_plot = react$diagnosands
),
from_cache = react$diagnosands_cached
))
}
# get all arguments from the left side pane in the "Inspect" tab
d_args <- design_tab_proxy$design_args()
insp_args <- get_args_for_inspection(design_tab_proxy$react$design,
design_tab_proxy$react$design_id,
design_tab_proxy$react$design_argdefinitions,
input,
design_tab_proxy$get_fixed_design_args(),
design_tab_proxy$input)
if (max(sapply(insp_args, length)) == 0) {
# only if at least one argument is a sequence (i.e. its length is > 1) for comparison,
# run the diagnoses and return a result
return(NULL)
}
print('will run diagnoses with arguments:')
print(insp_args)
# save the current state of the inspection parameters
react$insp_args_used_in_plot <- insp_args
react$insp_args_used_in_plot$simconf_sim_num <- input$simconf_sim_num
react$insp_args_used_in_plot$simconf_bootstrap_num <- input$simconf_bootstrap_num
# run diagnoses and get results
diag_results <- run_diagnoses_using_inspection_args(insp_args, advance_progressbar = 1/6)
if (!is.null(diag_results$error_msg)) { # if errors occurred, don't try to generate a plot and directly return NULL
react$captured_errors <- c(react$captured_errors, diag_results$error_msg)
return(NULL)
}
react$diagnosands_cached <- diag_results$from_cache
react$diagnosands_full <- diag_results$results$diagnosands_df
plotdf <- diag_results$results$diagnosands_df
react$diagnosands <- plotdf
diag_results$results$diagnosands_df_for_plot <- plotdf
diag_results
})
# reactive function to run diagnoses and return the results once "Run single design diagnosis" is clicked
get_diagnosis_for_single_design <- eventReactive(input$update_plot_all_fixed, {
req(design_tab_proxy$react$design, design_tab_proxy$react$design_argdefinitions)
args <- design_tab_proxy$design_args()
argnames <- names(args)
argnames <- setdiff(argnames, 'fixed')
insp_args <- args[argnames]
run_diagnoses_using_inspection_args(insp_args)
})
# get subset data frame of diagnosands for display and download once "Update plot" is clicked
get_diagnosands_for_display <- reactive({
req(react$diagnosands)
req(input$plot_conf_color_param)
req(input$plot_conf_facets_param)
req(input$plot_conf_diag_param)
# assign a new dataframe, then subset this dataframe by estimand or estimator variable
plotdf <- react$diagnosands
if (isTruthy(input$plot_conf_estimand) && isTruthy(input$plot_conf_estimator)) {
plotdf <- plotdf[plotdf$estimator_label == input$plot_conf_estimator & plotdf$estimand_label == input$plot_conf_estimand,]
}
# set columns to show
if (input$plot_conf_x_param != "") {
cols <- c(input$plot_conf_x_param)
} else {
cols <- character()
}
if (isTruthy(input$plot_conf_color_param) && input$plot_conf_color_param != '(none)') {
cols <- c(cols, input$plot_conf_color_param)
}
if (isTruthy(input$plot_conf_facets_param) && input$plot_conf_facets_param != '(none)') {
cols <- c(cols, input$plot_conf_facets_param)
}
if ("term" %in% colnames(react$diagnosands)){
cols <- c(cols, 'estimand_label','estimator_label', 'term', input$plot_conf_diag_param, paste0('se(', input$plot_conf_diag_param, ')'))
} else {
cols <- c(cols, 'estimand_label', 'estimator_label', input$plot_conf_diag_param, paste0('se(', input$plot_conf_diag_param, ')'))
}
# return data frame subset
plotdf[cols]
})
# determines whether it is necessary to re-run the diagnoses (i.e. when also the comparison parameters
# on the left have been changed and not only the plot config. parameters)
rerun_diagnoses_required <- reactive({
if (is.null(react$insp_args_used_in_plot)) {
return(TRUE)
} else {
d_args <- design_tab_proxy$design_args()
insp_args <- get_args_for_inspection(design_tab_proxy$react$design,
design_tab_proxy$react$design_id,
design_tab_proxy$react$design_argdefinitions,
input,
design_tab_proxy$get_fixed_design_args(),
design_tab_proxy$input)
insp_args$simconf_sim_num <- input$simconf_sim_num
insp_args$simconf_bootstrap_num <- input$simconf_bootstrap_num
return(!lists_equal_shallow(react$insp_args_used_in_plot, insp_args, na.rm = TRUE))
}
})
# return a character vector with names of arguments that the user changed in the inspect tab, i.e.
# those arguments where the values differ from those in the design tab.
get_changed_args <- reactive({
# get current designer arguments and argument definitions
d_args <- design_tab_proxy$design_args()
defs <- defs <- design_tab_proxy$react$design_argdefinitions
# record changed arguments
changed_args <- character()
for (argname in names(d_args)) {
# get input names for respective tabs
inp_name_design <- paste0('design_arg_', argname)
inp_name_inspect <- paste0('inspect_arg_', argname)
argdef <- as.list(defs[defs$names == argname,])
insp_inp_value <- input[[inp_name_inspect]]
# skip on initial NULL values
if (!is.null(insp_inp_value)) {
# get input value from design tab and convert it to a string as it would be used in the inspect tab
design_inp_value <- design_tab_proxy$input[[inp_name_design]]
design_inp_value_str <- designer_arg_value_to_fraction(design_inp_value, argdef$class, argdef$vector, to_char = TRUE)
if (insp_inp_value != design_inp_value_str) { # record if values differ
changed_args <- c(changed_args, argname)
}
}
}
return(changed_args)
})
# message to be displayed if results were loaded from cache
results_cached_message <- reactive({
if (react$diagnosands_cached) {
return(p('Results loaded from cached diagnoses. You can disable caching in the top panel "Configure simulations".'))
} else {
return('')
}
})
# message to be displayed if not all varying parameters are used in plot as visual properties
plot_config_warning <- reactive({
inp_prefix <- 'plot_conf_'
inp_plotconf <- c('x_param', 'color_param', 'facets_param')
# single-bracket indexing of reactivevalues object is not allowed
input_values <- sapply(paste0(inp_prefix, inp_plotconf), function(inp_id) {
val <- input[[inp_id]]
ifelse(val == '(none)', NA, val)
})
input_values <- input_values[!is.na(input_values)]
names(input_values) <- NULL
unused_args <- setdiff(react$insp_args_varying, input_values)
if (length(unused_args) > 0) {
arglabels <- rm_usc(unused_args)
return(paste('<p><b>The following designer parameters are varying, but are not bound to visual
properties in the plot:</b> ', paste(arglabels, collapse = ', '), '</p><p>You should
bind them by adjusting the plot configuration on the right panel to make sure
that a valid plot is constructed and to make this message disappear.</p>'))
}
return('')
})
# reactive plot generation function
generate_plot <- reactive({
n_steps = 6
withProgress(message = 'Simulating data and generating plot...', value = 0, {
incProgress(1/n_steps)
diag_res <- get_diagnoses_for_plot()
if (is.null(diag_res)) {
return(NULL)
}
p <- NULL
plotdf <- diag_res$results$diagnosands_df_for_plot
isolate({ # isolate all other parameters used to configure the plot so that the "Update plot" button has to be clicked
if (length(react$insp_args_varying) > 0) {
diag_colnames <- colnames(plotdf)
req(input$plot_conf_x_param, input$plot_conf_diag_param)
req(input$plot_conf_x_param %in% diag_colnames)
req(input$plot_conf_diag_param %in% diag_colnames)
# the bound value of confidence interval: diagnosand values +/-SE*1.96
plotdf$diagnosand_min <- plotdf[[input$plot_conf_diag_param]] - plotdf[[paste0("se(", input$plot_conf_diag_param, ")")]] * 1.96
plotdf$diagnosand_max <- plotdf[[input$plot_conf_diag_param]] + plotdf[[paste0("se(", input$plot_conf_diag_param, ")")]] * 1.96
# base aesthetics for line plot
aes_args <- list(
'x' = input$plot_conf_x_param,
'y' = input$plot_conf_diag_param,
'ymin' = 'diagnosand_min',
'ymax' = 'diagnosand_max'
)
# subset the plotdf by estimand or estimator variable
if (isTruthy(input$plot_conf_estimand) && isTruthy(input$plot_conf_estimator)) {
plotdf <- plotdf[plotdf$estimator_label == input$plot_conf_estimator & plotdf$estimand_label == input$plot_conf_estimand,]
}
# if the "color" parameter is set, add it to the aeshetics definition
if (isTruthy(input$plot_conf_color_param) && input$plot_conf_color_param != '(none)') {
plotdf[[input$plot_conf_color_param]] <- factor(plotdf[[input$plot_conf_color_param]])
aes_args$color <- input$plot_conf_color_param
aes_args$fill <- input$plot_conf_color_param
aes_args$group <- input$plot_conf_color_param
} else {
aes_args$group <- 1
}
# if the "facets" parameter is set, add it to the aeshetics definition
if (isTruthy(input$plot_conf_facets_param) && input$plot_conf_facets_param != '(none)') {
plotdf$facets_param <- as.factor(plotdf[[input$plot_conf_facets_param]])
}
# create aesthetics definition
aes_definition <- do.call(aes_string, aes_args)
incProgress(1/n_steps)
# create base line plot
p <- ggplot(plotdf, aes_definition) +
geom_line() +
geom_point() +
scale_y_continuous(name = str_cap(input$plot_conf_diag_param)) +
dd_theme() +
labs(x = input$plot_conf_x_param)
# add confidence interval if requested
if (isTruthy(input$plot_conf_confi_int_id)) {
p <- p + geom_ribbon(alpha = 0.25, color = 'white')
}
# add facets if necessary
if (isTruthy(input$plot_conf_facets_param) && input$plot_conf_facets_param != '(none)') {
p <- p + facet_wrap(input$plot_conf_facets_param, ncol = 2, labeller = label_both)
}
incProgress(1/n_steps)
}
shinyjs::enable('reshape_diagnosands')
shinyjs::enable('section_diagnosands_download_subset')
shinyjs::enable('section_diagnosands_download_full')
shinyjs::enable('convert_format_table')
p
})
})
})
# reactive button label
btn_label <- reactive({
if (rerun_diagnoses_required()) {
return('Run diagnoses and update plot')
} else {
return('Update plot')
}
})
# -------------- event observers --------------
# "reset values" button on left side: set inputs to defaults
observeEvent(input$reset_inputs, {
d_args <- design_tab_proxy$design_args()
defs <- design_tab_proxy$react$design_argdefinitions
defaults <- get_inspect_input_defaults(d_args, defs, list()) # pass empty input list
for (argname in names(defaults)) {
updateTextInput(session, paste0('inspect_arg_', argname), value = defaults[[argname]])
}
})
# Action button label gets updated only when reactive inspector values don't change
observeEvent(btn_label(), { updateActionButton(session, 'update_plot', btn_label()) })
# -------------- output elements: hidden --------------
# hidden (for conditional panel): return TRUE when all designer arguments were fixed, otherwise FALSE
output$all_design_args_fixed <- reactive({
req(design_tab_proxy$react$design)
design_tab_proxy$all_design_args_fixed()
})
outputOptions(output, 'all_design_args_fixed', suspendWhenHidden = FALSE)
# hidden output that records current design ID (i.e. designer name) in order to detect changes of the
# designer and then reset the state of the inspect tab
output$cur_design_id <- reactive({
if (!is.null(react$cur_design_id) && react$cur_design_id != design_tab_proxy$react$design_id) {
# if the designer was changed, reset the reactive values
react$diagnosands <- NULL
react$diagnosands_full <- NULL
react$diagnosands_cached <- FALSE
react$diagnosands_call <- NULL
react$available_diagnosands <- NULL
react$design_params_used_in_plot <- NULL
shinyjs::disable('update_plot')
shinyjs::disable('reshape_diagnosands')
shinyjs::disable('section_diagnosands_download_subset')
shinyjs::disable('section_diagnosands_download_full')
shinyjs::disable('convert_format_table')
}
react$cur_design_id <- design_tab_proxy$react$design_id
react$cur_design_id
})
outputOptions(output, 'cur_design_id', suspendWhenHidden = FALSE)
# -------------- output elements: left side --------------
# left: show error messages if there are some (e.g. for invalid inputs)
output$param_input_messages <- renderUI({
req(react$captured_errors)
tags$div(class = 'error_msgs', paste(react$captured_errors, collapse = "\n"))
})
# left: design parameters to inspect
output$compare_design_parameters <- renderUI({
req(design_tab_proxy$react$design)
if (design_tab_proxy$all_design_args_fixed()) {
return(HTML('<p>No comparisons available since all parameters were set to <i>fixed</i>.<br></p>'))
}
d_args <- design_tab_proxy$design_args()
defs <- design_tab_proxy$react$design_argdefinitions
isolate({
if (!is.null(react$restoring_state)) {
defaults <- react$restoring_state[startsWith(names(react$restoring_state), 'inspect_arg_')]
names(defaults) <- substring(names(defaults), 13) # remove prefix 'inspect_arg_'
} else {
# set defaults: use value from design args in design tab unless the value was changed in the inspector tab
if (react$insp_args_set_after_tab_switch) {
# if we just switched over from the design tab, take over the values from there as long as they were
# not recorded as "changed" before switching
insp_args_changed <- react$insp_args_changed
react$insp_args_set_after_tab_switch <- FALSE # reset
} else {
# otherwise respect the changes at the point where we switched to this tab *and* the changes done since then
insp_args_changed <- union(react$insp_args_changed, get_changed_args())
}
# get defaults for inspect inputs; react$design_params_used_in_plot is NULL when switching
# from "design" tab for the first time after a designer was loaded
defaults <- get_inspect_input_defaults(d_args, defs, input, insp_args_changed,
use_only_d_args = is.null(react$design_params_used_in_plot))
}
nspace <- NS('tab_inspect')
param_boxes <- create_design_parameter_ui('inspect', design_tab_proxy$react, nspace,
input = design_tab_proxy$input,
defaults = defaults)
reset_btn <- actionButton(nspace('reset_inputs'), 'Reset values')
})
list(tags$div(reset_btn, param_boxes))
})
# -------------- output elements: center --------------
# center: messages for plot
output$plot_message <- renderUI({
if (is.null(react$diagnosands)) {
res <- HTML(inpector_help_text)
} else {
res <- results_cached_message()
plot_conf_warn <- plot_config_warning()
if (length(react$insp_args_varying) == 0) {
res <- list(res, HTML('<p><b>No varying arguments were set on the left side, hence not plot can be
generated. You can still access the diagnosis for the single generated design
in the box below.</b></p>'))
} else if (plot_conf_warn != '') {
res <- list(res, HTML(plot_conf_warn))
}
res <- div(res, class = 'alert alert-warning')
}
res
})
# center: plot output
# all the following hassle because Shiny would neither:
# - accept "auto" as plot height
# - allow to show/hide the plot inside a conditional panel (the "Run diagnoses" button would not work anymore)
# - allow to show/hide the plot using shinyjs (same as above)
output$plot_output <- renderUI({
if (is.null(react$diagnosands) || length(react$insp_args_varying) == 0) {
h <- 1
} else {
h <- 400
}
nspace <- NS('tab_inspect')
plotOutput(nspace('actual_plot_output'), height = h)
})
output$actual_plot_output <- renderPlot({
p <- generate_plot()
if (!is.null(p) && !is.null(react$diagnosands)) {
shinyjs::enable('download_plot')
shinyjs::enable('download_plot_code')
} else {
shinyjs::disable('download_plot')
shinyjs::disable('download_plot_code')
}
p
})
# center above plot: plot information
output$plot_info <- renderUI({
if (is.null(design_tab_proxy$react$design)) {
return(material_card(title = "No designer loaded",
p('Please load a designer first in the "Design" tab.')))
} else {
# get the values from the inspect tab
d_args <- design_tab_proxy$design_args()
insp_args <- get_args_for_inspection(design_tab_proxy$react$design,
design_tab_proxy$react$design_id,
design_tab_proxy$react$design_argdefinitions,
input,
design_tab_proxy$get_fixed_design_args(),
design_tab_proxy$input)
# show the design name
title <- str_cap(design_tab_proxy$react$design_id)
if (title == "Binary iv designer") title <- "Binary IV designer"
fixed_text <- ""
# show the fixed args
if (length(design_tab_proxy$get_fixed_design_args()) > 0){
txt1 <- unname(sapply(design_tab_proxy$get_fixed_design_args(), function(x){
if (length(insp_args[[x]])> 1) insp_args[[x]] <- sprintf('(%s)', paste(insp_args[[x]], collapse = ', '))
paste(rm_usc(x), "=", insp_args[[x]], collapse = "\n")
}))
fixed_text <- paste("<br><br>Fixed arguments (not shown):<br>", paste0(txt1, collapse = ", "))
}
req(design_tab_proxy$react$design)
description <- attr(design_tab_proxy$react$design, 'description')
return(material_card(title = title,
HTML(attr(design_tab_proxy$react$design, 'description')),
HTML(fixed_text)))
}
})
# center below plot: diagnosands table message
output$section_diagnosands_message <- renderUI({
if (is.null(react$diagnosands)) {
return(p('Missing simulations data. Vary design parameters on the left and click "Run diagnoses".'))
} else {
results_cached_message()
}
})
output$single_diagnosands_message <- renderUI({
if (is.null(react$diagnosands)) {
return(p('Not data yet. Set comparison parameters and generate a plot first.'))
} else {
results_cached_message()
}
})
# center below plot: diagnosands table
output$section_diagnosands_table <- renderDataTable({
if (input$reshape_diagnosands){
get_diagnosands_for_display()
}else{
make_diagnosis_long(get_diagnosands_for_display(), input$plot_conf_diag_param, within_col = TRUE)
}
}, options = diagnosis_table_opts)
# center below plot: diagnosis table for single design
output$single_diagnosands_table <- renderDataTable({
diag_res <- get_diagnosis_for_single_design()
react$diagnosands_cached <- diag_res$from_cache
select(diag_res$results$diagnosands_df, -c(design_label, n_sims))
}, options = list_merge(diagnosis_table_opts, list(paging = FALSE)))
# -------------- output elements: right side --------------
# right: inspection plot configuration
output$plot_conf <- renderUI({
boxes <- list()
if (!is.null(design_tab_proxy$react$design) && !is.null(design_tab_proxy$react$design_argdefinitions)) {
# create list of input elements, all with a common prefix
nspace <- NS('tab_inspect')
inp_prefix <- 'plot_conf_'
boxes <- list()
args_fixed <- design_tab_proxy$get_fixed_design_args()
all_fixed <- design_tab_proxy$all_design_args_fixed()
if (is.null(react$restoring_state)) {
input_defaults <- input
} else {
input_defaults <- react$restoring_state
}
# get estimates and diagnosis information
# create the design instance and get its estimates
d <- design_tab_proxy$design_instance()
d_estimates <- draw_estimates(d)
diag_info <- get_diagnosands_info(d)
# get available diagnosands
react$diagnosands_call <- diag_info$diagnosands_call
react$available_diagnosands <- diag_info$available_diagnosands
available_diagnosands <- react$available_diagnosands
names(available_diagnosands) <- sapply(available_diagnosands, str_cap, USE.NAMES = FALSE)
# 1. estimand
inp_estimand_id <- paste0(inp_prefix, "estimand")
inp_estimand <- selectInput(nspace(inp_estimand_id), "Estimand Label",
choices = unique(d_estimates$estimand_label),
selected = input_defaults[[inp_estimand_id]])
boxes <- list_append(boxes, inp_estimand)
# 2. estimator
inp_estimator_id <- paste0(inp_prefix, "estimator")
inp_estimator <- selectInput(nspace(inp_estimator_id), "Estimator Label",
choices = unique(d_estimates$estimator_label[d_estimates$estimand_label == input_defaults[[inp_estimand_id]]]),
selected = input_defaults[[inp_estimator_id]])
boxes <- list_append(boxes, inp_estimator)
# 3. coefficient
if ("term" %in% names(d_estimates)) {
coefficients <- d_estimates$term[d_estimates$estimand_label == input_defaults[[inp_estimand_id]] & d_estimates$estimator_label == input_defaults[[inp_estimator_id]]]
inp_coeff_id <- paste0(inp_prefix, "coefficient")
inp_coeff <- selectInput(nspace(inp_coeff_id), "Coefficient",
choices = coefficients,
selected = input_defaults[[inp_coeff_id]])
boxes <- list_append(boxes, inp_coeff)
}
# 4. diagnosand (y-axis)
if (!all_fixed) {
inp_diag_param_id <- paste0(inp_prefix, "diag_param")
inp_diag_param <- selectInput(nspace(inp_diag_param_id), "Diagnosand (y-axis)",
choices = available_diagnosands,
selected = input_defaults[[inp_diag_param_id]])
boxes <- list_append(boxes, inp_diag_param)
}
# 4b. optional: diagnosand parameter
if (all_fixed || (length(input_defaults[[inp_diag_param_id]]) > 0 && input_defaults[[inp_diag_param_id]] == 'power')) {
inp_diag_param_param_id <- paste0(inp_prefix, "diag_param_param")
if (length(input_defaults[[inp_diag_param_param_id]]) > 0) {
inp_diag_param_param_default <- input_defaults[[inp_diag_param_param_id]]
} else {
inp_diag_param_param_default <- 0.05
}
inp_diag_param_param <- numericInput(nspace(inp_diag_param_param_id), "Alpha for power",
min = 0, max = 1, step = 0.01,
value = inp_diag_param_param_default)
boxes <- list_append(boxes, inp_diag_param_param)
}
if (!all_fixed) {
# 5. CI check box
inp_con_int_param_id <- paste0(inp_prefix, "confi_int_id")
inp_con_int_param <- checkboxInput(nspace(inp_con_int_param_id), label = "Show confidence interval", value = TRUE)
boxes <- list_append(boxes, inp_con_int_param)
# 6. main inspection parameter (x-axis)
d_args <- design_tab_proxy$design_args()
insp_args <- get_args_for_inspection(design_tab_proxy$react$design,
design_tab_proxy$react$design_id,
design_tab_proxy$react$design_argdefinitions,
input_defaults,
design_tab_proxy$get_fixed_design_args(),
design_tab_proxy$input_defaults)
if (length(insp_args)>0){ # inp_value is empty when we first load the inspect tab
insp_args_NAs <- sapply(insp_args, function(arg) { any(is.na(arg)) })
insp_args_is_varying <- sapply(insp_args, function(arg) {any(length(arg) > 1)})
react$insp_args_varying <- names(insp_args_is_varying)[insp_args_is_varying]
if (sum(insp_args_NAs) > 0) {
shinyjs::disable('update_plot')
react$captured_errors <- paste('Invalid values supplied to the following arguments:',
paste(names(insp_args_NAs)[insp_args_NAs], collapse = ', '))
}else{
react$captured_errors <- NULL
shinyjs::enable('update_plot')
}
insp_args_lengths <- sapply(insp_args, length)
variable_args <- names(insp_args_lengths[insp_args_lengths > 1])
variable_args <- setdiff(variable_args, args_fixed)
inp_x_param_id <- paste0(inp_prefix, "x_param")
inp_x_param <- selectInput(nspace(inp_x_param_id), "Primary parameter (x-axis)",
choices = variable_args,
selected = input_defaults[[inp_x_param_id]])
boxes <- list_append(boxes, inp_x_param)
# 7. secondary inspection parameter (color)
variable_args_optional <- c('(none)',variable_args[variable_args != input_defaults[[inp_x_param_id]]])
inp_color_param_id <- paste0(inp_prefix, "color_param")
inp_color_param <- selectInput(nspace(inp_color_param_id), "Secondary parameter (color)",
choices = variable_args_optional,
selected = input_defaults[[inp_color_param_id]])
boxes <- list_append(boxes, inp_color_param)
# 8. tertiary inspection parameter (small multiples)
if (length(variable_args_optional) <= 2) {
variable_args_options <- variable_args_optional
}else{
variable_args_options <- variable_args_optional[variable_args_optional != input_defaults[[inp_color_param_id]]]
}
# variable_args_options <- c('(none)',variable_args_optional[variable_args_optional != input_defaults[[inp_color_param_id]]])
inp_facets_param_id <- paste0(inp_prefix, "facets_param")
inp_facets_param <- selectInput(nspace(inp_facets_param_id), "Tertiary parameter (small multiples)",
choices = variable_args_options,
selected = input_defaults[[inp_facets_param_id]])
boxes <- list_append(boxes, inp_facets_param)
}
}
}
do.call(material_card, c(title="Plot configuration", boxes))
})
# -------------- download handlers --------------
output$download_plot <- downloadHandler(
filename = function() {
design_name <- input$design_arg_design_name
if (!isTruthy(design_name)) {
design_name <- paste0("design-", Sys.Date())
}
paste0(design_name, '_diagnostic_plot.png')
},
content = function(file) {
png(file, width = 1200, height = 900)
print(generate_plot())
dev.off()
}
)
output$download_plot_code <- downloadHandler(
filename = function() {
design_name <- input$design_arg_design_name
if (!isTruthy(design_name)) {
design_name <- paste0("design-", Sys.Date())
}
paste0(design_name, '_inspection_plot.R')
},
content = function(fname) {
code <- generate_plot_code(get_diagnosands_for_display(),
react$cur_design_id,
input$plot_conf_diag_param,
input$plot_conf_x_param,
input$plot_conf_color_param,
input$plot_conf_facets_param,
isTruthy(input$plot_conf_confi_int_id))
print(code)
fh <- file(fname, 'w')
writeLines(code, fh)
close(fh)
}
)
# diagnosands download
output$section_diagnosands_download_subset <- downloadHandler(
filename = function() { # note that this seems to work only in a "real" browser, not in RStudio's browser
design_name <- input$design_arg_design_name
if (!isTruthy(design_name)) {
design_name <- paste0("design-", Sys.Date())
}
paste0(design_name, '_diagnosands.csv')
},
content = function(file) {
if (input$reshape_diagnosands) {
download_data <- get_diagnosands_for_display()
} else {
download_data <- make_diagnosis_long(get_diagnosands_for_display(),
input$plot_conf_diag_param,
within_col = TRUE)
}
write.csv(download_data, file = file, row.names = FALSE)
}
)
# diagnosands download (full dataset)
output$section_diagnosands_download_full <- downloadHandler(
filename = function() { # note that this seems to work only in a "real" browser, not in RStudio's browser
design_name <- input$design_arg_design_name
if (!isTruthy(design_name)) {
design_name <- paste0("design-", Sys.Date())
}
paste0(design_name, '_diagnosands_full.csv')
},
content = function(file) {
if (input$reshape_diagnosands) {
download_data <- react$diagnosands
} else {
download_data <- make_diagnosis_long(react$diagnosands,
react$available_diagnosands,
within_col = FALSE)
}
write.csv(download_data, file = file, row.names = FALSE)
}
)
# -------------- bookmarking --------------
# customize bookmarking process: add additional data to bookmarked state
onBookmark(function(state) {
print('BOOKMARKING IN INSPECT TAB:')
# add open panels, because they're not restored automatically
react$custom_state$panel_simconf_state <- input$inspect_sections_simconf_container
react$custom_state$panel_diagnosis_state <- input$inspect_sections_container
# store additional state objects
for (objname in bookmark_store_react_objects) {
react$custom_state[[objname]] <- react[[objname]]
}
print(react$custom_state)
state$values$custom_state <- react$custom_state
})
# customize restoring process
onRestore(function(state) {
print('RESTORING IN INSPECT TAB:')
react$custom_state <- state$values$custom_state
react$restoring_state <- state$input
print(state)
# restore additional state objects
for (objname in bookmark_store_react_objects) {
react[[objname]] <- react$custom_state[[objname]]
}
# re-open the panels
updateCollapse(session, 'inspect_sections_simconf_container', open = react$custom_state$panel_simconf_state)
updateCollapse(session, 'inspect_sections_container', open = react$custom_state$panel_diagnosis_state)
# update the plot after a small delay when all inputs are ready
shinyjs::delay(3000, {
nspace <- NS('tab_inspect')
react$restoring_state <- NULL
shinyjs::click(nspace('update_plot'))
})
})
# -------------- return values of this module --------------
# return reactive values and some functions to be accessed from other modules
return(list(
get_changed_args = get_changed_args,
set_changed_args = set_changed_args
))
}