Skip to content

Commit

Permalink
Merge pull request #24 from koolerjaebee/master
Browse files Browse the repository at this point in the history
Add pvalue in box,bar,line at jsBasicGadget
  • Loading branch information
jinseob2kim authored Mar 27, 2024
2 parents 9d1559b + b5730cd commit fb52eb3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions R/jsBasicGadget.R
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ jsBasicGadget <- function(data, nfactor.limit = 20) {
boxUI("box")
),
mainPanel(
optionUI("box"),
withLoader(plotOutput("box_plot"), type = "html", loader = "loader6"),
ggplotdownUI("box")
)
Expand All @@ -210,6 +211,7 @@ jsBasicGadget <- function(data, nfactor.limit = 20) {
barUI("bar")
),
mainPanel(
optionUI("bar"),
withLoader(plotOutput("bar_plot"), type = "html", loader = "loader6"),
ggplotdownUI("bar")
)
Expand All @@ -222,6 +224,7 @@ jsBasicGadget <- function(data, nfactor.limit = 20) {
lineUI("line")
),
mainPanel(
optionUI("line"),
withLoader(plotOutput("line_plot"), type = "html", loader = "loader6"),
ggplotdownUI("line")
)
Expand Down Expand Up @@ -1025,6 +1028,7 @@ jsBasicExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
boxUI("box")
),
mainPanel(
optionUI("box"),
withLoader(
plotOutput("box_plot"),
type = "html",
Expand All @@ -1041,6 +1045,7 @@ jsBasicExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
barUI("bar")
),
mainPanel(
optionUI("bar"),
withLoader(plotOutput("bar_plot"), type = "html", loader = "loader6"),
ggplotdownUI("bar")
)
Expand All @@ -1053,6 +1058,7 @@ jsBasicExtAddin <- function(nfactor.limit = 20, max.filesize = 2048) {
lineUI("line")
),
mainPanel(
optionUI("line"),
withLoader(plotOutput("line_plot"), type = "html", loader = "loader6"),
ggplotdownUI("line")
)
Expand Down

0 comments on commit fb52eb3

Please sign in to comment.