tergo-lib 0.2.12

A tool to format R code
Documentation
1
2
3
4
5
6
7
8
9
if (isTRUE(grepl("^t_", output_function))) {
  show_plot_rv(FALSE)
  shinyjs::show("mmrm_table")
} else if (isTRUE(grepl("^g_", output_function))) {
  shinyjs::hide("mmrm_table")
  show_plot_rv(TRUE)
} else {
  stop("unknown output type")
}