Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

excelOutput

Helper function for using jexcel table in Shiny


Description

Shiny bindings for excel table

Usage

excelOutput(outputId, width = "100%", height = "400px")

Arguments

outputId

output variable to read from.

width, height

must be a valid CSS unit in pixel or a number, which will be coerced to a string and "px" appended.

See Also

Examples

if(interactive()) {
  library(shiny)
  library(excelR)
  shinyApp(
    ui = fluidPage(excelOutput("table")),
    server = function(input, output, session) {
      output$table <-
     renderExcel(excelTable(data = head(iris)))
     }
   )
}

excelR

A Wrapper of the 'JavaScript' Library 'jExcel'

v0.4.0
MIT + file LICENSE
Authors
Swechhya Bista [aut, cre], Kent Russell [ctb], Mārcis Bratka [ctb]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.