lineUI: lineUI: shiny module UI for lineplot

Description Usage Arguments Details Value Examples

View source: R/line.R

Description

Shiny module UI for lineplot

Usage

1
lineUI(id, label = "lineplot")

Arguments

id

id

label

label

Details

Shiny module UI for lineplot

Value

Shiny module UI for lineplot

Examples

 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
library(shiny);library(ggplot2);library(ggpubr);
ui <- fluidPage(
   sidebarLayout(
   sidebarPanel(
     lineUI("line")
   ),
   mainPanel(
     plotOutput("line_plot"),
     ggplotdownUI("line")
   )
 )
)

server <- function(input, output, session) {

  data <- reactive(mtcars)
  data.label <- reactive(jstable::mk.lev(mtcars))

  out_line <- lineServer("line", data = data, data_label = data.label,
    data_varStruct = NULL)

  output$line_plot <- renderPlot({
    print(out_line())
  })
}

leevenstar/jstest documentation built on Dec. 23, 2021, 12:16 a.m.