Skip to content

Commit

Permalink
v1.6.1 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jinseob2kim committed Jan 8, 2025
1 parent 0c923b6 commit acb0b43
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: jsmodule
Title: 'RStudio' Addins and 'Shiny' Modules for Medical Research
Version: 1.6.1
Date: 2024-12-18
Date: 2025-01-08
Authors@R: c(
person("Jinseob", "Kim", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-9403-605X")),
person("Zarathu", role = c("cph", "fnd")),
Expand Down
4 changes: 2 additions & 2 deletions R/forestcox.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#' @description Shiny module UI for forestcox
#' @param id id
#' @param label label, Default: 'forestplot'
#' @param cluster_id cluster id. default: NULL
#' @return Shinymodule UI
#' @details Shinymodule UI for forestcox
#' @examples
Expand Down Expand Up @@ -85,6 +84,7 @@ forestcoxUI <- function(id, label = "forestplot") {
#' @param data_varStruct Reactive List of variable structure, Default: NULL
#' @param nfactor.limit nlevels limit in factor variable, Default: 10
#' @param design.survey reactive survey data. default: NULL
#' @param cluster_id cluster option variable for marginal cox model
#' @return Shiny module server for forestcox
#' @details Shiny module server for forestcox
#' @examples
Expand Down Expand Up @@ -244,7 +244,7 @@ forestcoxServer <- function(id, data, data_label, data_varStruct = NULL, nfactor
sliderInput(session$ns("time"), "Select time range", min = min(data()[[day]], na.rm = TRUE), max = max(data()[[day]], na.rm = TRUE), value = c(min(data()[[day]], na.rm = TRUE), max(data()[[day]], na.rm = TRUE)))
})

print(cluster_id)
#print(cluster_id)

output$xlim_forest <- renderUI({
req(tbsub)
Expand Down
5 changes: 4 additions & 1 deletion man/forestcoxServer.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion man/forestglmServer.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit acb0b43

Please sign in to comment.