0
私はアプリに表示されるテキストを.txtファイルでダウンロードする方法を探しています。ここに私の試みは残念ながらありません成功し、次のとおりです。テキストをダウンロードしてShinyでtxtファイルを生成
library(shiny)
ui <- fluidPage(
sidebarPanel(
h4("Title"),
p("Subtitle",
br(),"Line1",
br(),"Line2",
br(),"Line3"),
downloadButton("Download Metadata", label = "Download")
)
)
server <- function(input, output, session){
output$downlaodData <- downloadHandler(
filename = function(){
paste("data-", Sys.Date(), ".txt", sep = "")
},
content = function(file) {
write.txt(data, file)
}
)
は、あなたがそのようなあなたのページに表示されるテキストを書くことができないあなたの助け