我创建了一个闪亮的应用程序,我可以在其中下载各种文件格式(pdf、excel、csv)的表格。但是,我发现它们中的每一个都具有与我的 Shiny 应用程序相同的标题(“这是我在 Shiny 中的表”)。
我使用 DataTable 中的这个扩展。
有谁知道我是否可以从下载的文件中删除该标题?
我的代码:
library(shiny)
library(DT)
ui <- fluidPage(
# Application title
titlePanel("This is my table in Shiny")
, mainPanel(
DT::dataTableOutput("fancyTable")
)
)
server <- function(input, output) {
output$fancyTable <- DT::renderDataTable(
datatable( data = mtcars
, extensions = 'Buttons'
, options = list(
dom = "Blfrtip"
, buttons =
list("copy", list(
extend = "collection"
, buttons = c("csv", "excel", "pdf")
, text = "Download"
) )
, lengthMenu = list( c(10, 20, -1)
, c(10, 20, "All")
)
, pageLength = 10
)
)
)
}
# Run the application
shinyApp(ui = ui, server = server)
提前致谢
问候