UPDATED
I created one shiny app. there end user can run their Function(R Script). I enabled those things over this function(below)
server.R
observeEvent(input$v1,{
inFile <- input$v1
if (is.null(inFile))
return(NULL)
})
ui.R
fileInput('v1', 'End user function only in R script',accept=c('R/ R script','.R'))
above both codes are only small pieces. i want to run my separate R file over browsing Here that codes are not sourced. i want to get that function inside my shiny app and plot in my graph.
My problem is whole things working normally in my local host, I deployed this same app in shinyapp.io after that the end user part
is not working(not whole app)
I am stuck with this past three days!
Guys is it possible to do?? Can any one help me??
I hope you Guys understand this. if not sorry!!!
Thanks in advance