Skip to content

Commit

Permalink
1.4.2 for cran, bugfix tb1module
Browse files Browse the repository at this point in the history
  • Loading branch information
jinseob2kim committed Aug 8, 2023
1 parent 35e7e99 commit de1fef2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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.4.2
Date: 2023-08-01
Date: 2023-08-08
Authors@R: c(person("Jinseob", "Kim", email = "jinseob2kim@gmail.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-9403-605X")),
person("Zarathu", role = c("cph", "fnd")),
person("Hyunki", "Lee", email = "leevenstar@snu.ac.kr", role = c("aut")),
Expand Down
4 changes: 2 additions & 2 deletions R/jsBasicGadget.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jsBasicGadget <- function(data, nfactor.limit = 20) {
),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test (2 groups) or ANOVA (> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
)
Expand Down Expand Up @@ -802,7 +802,7 @@ jsBasicExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test (2 groups) or ANOVA (> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
)
Expand Down
8 changes: 4 additions & 4 deletions R/jsPropensityGadget.R
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jsPropensityGadget <- function(data, nfactor.limit = 20) {
withLoader(DTOutput("table1_original"), type = "html", loader = "loader6"),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test(2 groups) or ANOVA(> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
),
Expand All @@ -124,7 +124,7 @@ jsPropensityGadget <- function(data, nfactor.limit = 20) {
withLoader(DTOutput("table1_ps"), type = "html", loader = "loader6"),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test(2 groups) or ANOVA(> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
),
Expand Down Expand Up @@ -1137,7 +1137,7 @@ jsPropensityExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
withLoader(DTOutput("table1_original"), type = "html", loader = "loader6"),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test(2 groups) or ANOVA(> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
),
Expand All @@ -1146,7 +1146,7 @@ jsPropensityExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
withLoader(DTOutput("table1_ps"), type = "html", loader = "loader6"),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test(2 groups) or ANOVA(> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
),
Expand Down
4 changes: 2 additions & 2 deletions R/jsRepeatedGadget.R
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jsRepeatedGadget <- function(data, nfactor.limit = 20) {
withLoader(DTOutput("table1"), type = "html", loader = "loader6"),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test(2 groups) or ANOVA(> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
)
Expand Down Expand Up @@ -636,7 +636,7 @@ jsRepeatedExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
withLoader(DTOutput("table1"), type = "html", loader = "loader6"),
wellPanel(
h5("Normal continuous variables are summarized with Mean (SD) and t-test(2 groups) or ANOVA(> 2 groups)"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and kruskal-wallis test"),
h5("Non-normal continuous variables are summarized with median [IQR or min,max] and wilcox(2 groups)/kruskal-wallis(>3 groups) test"),
h5("Categorical variables are summarized with table")
)
)
Expand Down

0 comments on commit de1fef2

Please sign in to comment.