Hi everyone! I have a problem when I create the Shiny app. It works perfectly fine when I hit Run App (it runs fine in the browser). However, I get the following error when I try to put it in shinyapps.io. It remains "running" in shinyapps.io. Both the error sign from shinyapps.io and the code is below. Thanks in advance.
Error in value[3L] : could not find function "dygraphOutput"
Calls: local ... tryCatch -> tryCatchList -> tryCatchOne ->
Execution halted
ui<-fluidPage(dygraphOutput("Sears_Amazon"))
server<-function(input, output) {output$Sears_Amazon<-
renderDygraph({dygraph(Sears_Amazon) %>% dyRangeSelector()})}
shinyApp(ui = ui, server = server)