csvFile: csvFile: Shiny module Server for file upload.

Description Usage Arguments Details Value Examples

View source: R/csvFileInput_mod.R

Description

Shiny module Server for file(csv or xlsx) upload.

Usage

1
csvFile(input, output, session, nfactor.limit = 20)

Arguments

input

input

output

output

session

session

nfactor.limit

nfactor limit to include, Default: 20

Details

Shiny module Server for file(csv or xlsx) upload.

Value

Shiny module Server for file(csv or xlsx) upload.

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
26
library(shiny);library(DT);library(data.table);library(readxl);library(jstable)
ui <- fluidPage(
  sidebarLayout(
    sidebarPanel(
      csvFileInput("datafile")
    ),
    mainPanel(
      tabsetPanel(type = "pills",
                  tabPanel("Data", DTOutput("data")),
                  tabPanel("Label", DTOutput("data_label", width = "100%"))
                 )
   )
 )
)

server <- function(input, output, session) {
  data <- callModule(csvFile, "datafile")

  output$data <- renderDT({
    data()$data
  })

  output$label <- renderDT({
    data()$label
  })
}

tanerumit/handyshiny documentation built on Dec. 16, 2019, 12:48 a.m.