Hi,
I have a Shiny app code in its usual way:
library()
source("my.function.R")
UI <- fluidPage{...}
server <- function(input, output) { Using my.function.R }
shinyApp(ui = ui, server = server)
The log says:
Warning: Error in my.function: could not find function "my.function"
How so? It works fine in R Studio!
Any idea of how I can solve it?
Thanks a lot