Closed gauravsk closed 6 years ago
I did this for the R scripts and not the shiny app, and haven't changed NAMESPACE yet. Do we need to do this for the shiny app even though the packages are loaded (e.g. library("ggplot2")
) in both server.R and ui.R? Using this syntax doesn't look too bad, except ggplot calls are a little ugly, and I imagine many of the shiny app functions will look strange. I could use this syntax for all packages except for shiny?
I think this is done, thanks @madcowen !
Hadley Wickham suggests using the
package::function()
syntax when writing code:Some more info about this here
It probably doesn't matter a whole lot, but might be worth it to make code more readable I guess