Hello,
I have been trying to load multiple data sources to shiny apps.
My application currently has 2 data. I use the following method to load it:
load("data1.RData")
load("data2.RData")
When I publish it to the server in shiny apps I get:
Error: object 'data2' not found
If I run it locally on my machine it works correctly but when publish it to the server it doesn´t.
Appreciate any light on the matter.