I am creating an app using R's Shiny app package.
I want to load specific RData according to the user's inputs. However, when I run the app it can't seem to be loading the RData properly.
Here follows the code that I am currently using:
dataset <- reactive({
filename <- paste(input$estado,
paste(paste("input_plot_list",
input$periodo, sep = "_"), "RData", sep = "."),
sep = "_")
load(filename)
})
I hope I was clear, any help is much appreciated!
Cheers.