I\'m deploying my shiny app and I don\'t know how to input my a local dataset. I keep getting Error: object \"data\" not found. Here is my path to shiny folder.
Error: object \"data\" not found
You may want to add a subdirectory in your shiny folder called "Data" and put proj.csv there.
Then, in your server.r put:
server.r
data<-read.csv("./Data/proj.csv")
That will make it clear where the data is when the app is deployed to the ShinyApps service.