Shiny bindings for excel table
excelOutput(outputId, width = "100%", height = "400px")
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. |
if(interactive()) { library(shiny) library(excelR) shinyApp( ui = fluidPage(excelOutput("table")), server = function(input, output, session) { output$table <- renderExcel(excelTable(data = head(iris))) } ) }