Problem in downloading data using Download Handlers in ShinyApp











up vote
0
down vote

favorite
1












My original data of mtcar gets downloaded using Download Handlers in ShinyApp whereas i want the the modified data (using SelectInputs) to be downloaded through Handlers.
I have attached my codes as well, please let me know whats wrong with them. Many thanks:)



library(shiny)
library(tidyr)
library(dplyr)
library(readr)
library(DT)

data_table <- mtcars

# Define UI
ui <- fluidPage(

downloadButton('downLoadFilter',"Download the filtered data"),

selectInput(inputId = "cyl",
label = "cyl:",
choices = c("All",
unique(as.character(data_table$cyl))),
selected = "4",
multiple = TRUE),

selectInput(inputId = "vs",
label = "vs:",
choices = c("All",
unique(as.character(data_table$vs))),
selected = "1",
multiple = TRUE),

DT::dataTableOutput('ex1'))

server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}

else if(input$vs != 'All'){
return(data_table[data_table$vs == input$vs,])
}

else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength =
10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive
thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}

shinyApp(ui = ui, server = server)









share|improve this question
























  • don't remove the code for original answer, others need your question in the future, add a second section if needed
    – Soren Havelund Welling
    Nov 20 at 7:29










  • I placed the code for your new question in comments of Vishesh Shrivastav answer.
    – Soren Havelund Welling
    Nov 20 at 7:41















up vote
0
down vote

favorite
1












My original data of mtcar gets downloaded using Download Handlers in ShinyApp whereas i want the the modified data (using SelectInputs) to be downloaded through Handlers.
I have attached my codes as well, please let me know whats wrong with them. Many thanks:)



library(shiny)
library(tidyr)
library(dplyr)
library(readr)
library(DT)

data_table <- mtcars

# Define UI
ui <- fluidPage(

downloadButton('downLoadFilter',"Download the filtered data"),

selectInput(inputId = "cyl",
label = "cyl:",
choices = c("All",
unique(as.character(data_table$cyl))),
selected = "4",
multiple = TRUE),

selectInput(inputId = "vs",
label = "vs:",
choices = c("All",
unique(as.character(data_table$vs))),
selected = "1",
multiple = TRUE),

DT::dataTableOutput('ex1'))

server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}

else if(input$vs != 'All'){
return(data_table[data_table$vs == input$vs,])
}

else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength =
10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive
thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}

shinyApp(ui = ui, server = server)









share|improve this question
























  • don't remove the code for original answer, others need your question in the future, add a second section if needed
    – Soren Havelund Welling
    Nov 20 at 7:29










  • I placed the code for your new question in comments of Vishesh Shrivastav answer.
    – Soren Havelund Welling
    Nov 20 at 7:41













up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





My original data of mtcar gets downloaded using Download Handlers in ShinyApp whereas i want the the modified data (using SelectInputs) to be downloaded through Handlers.
I have attached my codes as well, please let me know whats wrong with them. Many thanks:)



library(shiny)
library(tidyr)
library(dplyr)
library(readr)
library(DT)

data_table <- mtcars

# Define UI
ui <- fluidPage(

downloadButton('downLoadFilter',"Download the filtered data"),

selectInput(inputId = "cyl",
label = "cyl:",
choices = c("All",
unique(as.character(data_table$cyl))),
selected = "4",
multiple = TRUE),

selectInput(inputId = "vs",
label = "vs:",
choices = c("All",
unique(as.character(data_table$vs))),
selected = "1",
multiple = TRUE),

DT::dataTableOutput('ex1'))

server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}

else if(input$vs != 'All'){
return(data_table[data_table$vs == input$vs,])
}

else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength =
10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive
thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}

shinyApp(ui = ui, server = server)









share|improve this question















My original data of mtcar gets downloaded using Download Handlers in ShinyApp whereas i want the the modified data (using SelectInputs) to be downloaded through Handlers.
I have attached my codes as well, please let me know whats wrong with them. Many thanks:)



library(shiny)
library(tidyr)
library(dplyr)
library(readr)
library(DT)

data_table <- mtcars

# Define UI
ui <- fluidPage(

downloadButton('downLoadFilter',"Download the filtered data"),

selectInput(inputId = "cyl",
label = "cyl:",
choices = c("All",
unique(as.character(data_table$cyl))),
selected = "4",
multiple = TRUE),

selectInput(inputId = "vs",
label = "vs:",
choices = c("All",
unique(as.character(data_table$vs))),
selected = "1",
multiple = TRUE),

DT::dataTableOutput('ex1'))

server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}

else if(input$vs != 'All'){
return(data_table[data_table$vs == input$vs,])
}

else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength =
10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive
thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}

shinyApp(ui = ui, server = server)






r datatables shiny shiny-server dt






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 at 6:41

























asked Nov 19 at 22:18









Doctor

156




156












  • don't remove the code for original answer, others need your question in the future, add a second section if needed
    – Soren Havelund Welling
    Nov 20 at 7:29










  • I placed the code for your new question in comments of Vishesh Shrivastav answer.
    – Soren Havelund Welling
    Nov 20 at 7:41


















  • don't remove the code for original answer, others need your question in the future, add a second section if needed
    – Soren Havelund Welling
    Nov 20 at 7:29










  • I placed the code for your new question in comments of Vishesh Shrivastav answer.
    – Soren Havelund Welling
    Nov 20 at 7:41
















don't remove the code for original answer, others need your question in the future, add a second section if needed
– Soren Havelund Welling
Nov 20 at 7:29




don't remove the code for original answer, others need your question in the future, add a second section if needed
– Soren Havelund Welling
Nov 20 at 7:29












I placed the code for your new question in comments of Vishesh Shrivastav answer.
– Soren Havelund Welling
Nov 20 at 7:41




I placed the code for your new question in comments of Vishesh Shrivastav answer.
– Soren Havelund Welling
Nov 20 at 7:41












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










You are updating thedata() only inside your renderDataTable. You need to make it a reactive and then use it for being rendered as DataTable and being downloaded.
Change your server to:



# Define server logic
server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}
else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength = 10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}





share|improve this answer























  • Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
    – Doctor
    Nov 20 at 6:44












  • thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
    – Soren Havelund Welling
    Nov 20 at 7:43










  • semi colons is for line breaks...
    – Soren Havelund Welling
    Nov 20 at 7:45










  • thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
    – Doctor
    Nov 20 at 9:49











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53383462%2fproblem-in-downloading-data-using-download-handlers-in-shinyapp%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










You are updating thedata() only inside your renderDataTable. You need to make it a reactive and then use it for being rendered as DataTable and being downloaded.
Change your server to:



# Define server logic
server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}
else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength = 10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}





share|improve this answer























  • Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
    – Doctor
    Nov 20 at 6:44












  • thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
    – Soren Havelund Welling
    Nov 20 at 7:43










  • semi colons is for line breaks...
    – Soren Havelund Welling
    Nov 20 at 7:45










  • thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
    – Doctor
    Nov 20 at 9:49















up vote
1
down vote



accepted










You are updating thedata() only inside your renderDataTable. You need to make it a reactive and then use it for being rendered as DataTable and being downloaded.
Change your server to:



# Define server logic
server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}
else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength = 10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}





share|improve this answer























  • Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
    – Doctor
    Nov 20 at 6:44












  • thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
    – Soren Havelund Welling
    Nov 20 at 7:43










  • semi colons is for line breaks...
    – Soren Havelund Welling
    Nov 20 at 7:45










  • thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
    – Doctor
    Nov 20 at 9:49













up vote
1
down vote



accepted







up vote
1
down vote



accepted






You are updating thedata() only inside your renderDataTable. You need to make it a reactive and then use it for being rendered as DataTable and being downloaded.
Change your server to:



# Define server logic
server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}
else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength = 10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}





share|improve this answer














You are updating thedata() only inside your renderDataTable. You need to make it a reactive and then use it for being rendered as DataTable and being downloaded.
Change your server to:



# Define server logic
server <- function(input, output) {

thedata <- reactive({
if(input$cyl != 'All'){
return(data_table[data_table$cyl == input$cyl,])
}
else{
return(data_table)
}
})

output$ex1 <- DT::renderDataTable(DT::datatable(filter = 'top',
escape = FALSE,
options = list(pageLength = 10, scrollX='500px',autoWidth = TRUE),{
thedata() # Call reactive thedata()
}))


output$downLoadFilter <- downloadHandler(
filename = function() {
paste('Filtered data-', Sys.Date(), '.csv', sep = '')
},
content = function(path){
write_csv(thedata(),path) # Call reactive thedata()
})}






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 20 at 1:12

























answered Nov 20 at 0:36









Vishesh Shrivastav

1,0362621




1,0362621












  • Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
    – Doctor
    Nov 20 at 6:44












  • thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
    – Soren Havelund Welling
    Nov 20 at 7:43










  • semi colons is for line breaks...
    – Soren Havelund Welling
    Nov 20 at 7:45










  • thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
    – Doctor
    Nov 20 at 9:49


















  • Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
    – Doctor
    Nov 20 at 6:44












  • thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
    – Soren Havelund Welling
    Nov 20 at 7:43










  • semi colons is for line breaks...
    – Soren Havelund Welling
    Nov 20 at 7:45










  • thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
    – Doctor
    Nov 20 at 9:49
















Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
– Doctor
Nov 20 at 6:44






Thank you so much mate, I have updated the codes (at top section) as you suggested. However i'm facing a problem in filtering out vs column using else if statement. Can you please have a look? Many thanks
– Doctor
Nov 20 at 6:44














thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
– Soren Havelund Welling
Nov 20 at 7:43




thedata <- reactive({ include_by_cyl = if(input$cyl != 'All') data_table$cyl %in% input$cyl else rep(T,nrow(data_table)); include_by_vs = if(input$cyl != 'All') data_table$vs %in% input$vs else rep(T,nrow(data_table)); return(data_table[include_by_cyl & include_by_vs,]) })
– Soren Havelund Welling
Nov 20 at 7:43












semi colons is for line breaks...
– Soren Havelund Welling
Nov 20 at 7:45




semi colons is for line breaks...
– Soren Havelund Welling
Nov 20 at 7:45












thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
– Doctor
Nov 20 at 9:49




thanks mate, I tried running it, but it doesn't work when you put 'cyl=All" and then change 'vs' to any value in selectInput
– Doctor
Nov 20 at 9:49


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53383462%2fproblem-in-downloading-data-using-download-handlers-in-shinyapp%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

404 Error Contact Form 7 ajax form submitting

How to know if a Active Directory user can login interactively

TypeError: fit_transform() missing 1 required positional argument: 'X'