search for: 17hsaa

Displaying 2 results from an estimated 2 matches for "17hsaa".

Did you mean: 17aa
2015 Aug 26
1
declaring dependencies of shiny app in inst/
Hi there thanks for the answer. >> But are their better ways / best practices? >You'll have to ask questions like these on a Shiny forum. Done. New thread there: https://goo.gl/17hsAa >> On a related topic: are there plans of formally incorporating shiny apps in the structure of a R package, so that the checks will run through the code of the apps as well? > No, but it would be very easy to do: just write a function that tests > those things, and call it from a sc...
2015 Aug 26
2
declaring dependencies of shiny app in inst/
Dear all, I have a package implementing a shiny app, putting the R code of the app (server.R and ui.R) in inst/... and then having a simple function merely starting the app with something along the lines of: runApp(system.file("inst/...")) However, the app itself uses functions from packages which are not used elsewhere in the code. What is the best way to declare these dependencies