Advertisement
lvalnegri

server.R

May 16th, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.93 KB | None | 0 0
  1. ###################################
  2. # SHINY Explorer - server.R
  3. ###################################
  4.  
  5. shinyServer(function(input, output, session) {
  6.  
  7.     ### TABLES (tbl) --------------------------------------------------------------------------------------------------------------
  8.     source(file.path("server", "svr_tbl.R"),  local = TRUE)$value
  9.    
  10.     ### CHARTS (plt) -----------------------------------------------------------------------------------------------------------
  11.     source(file.path("server", "svr_plt.R"),  local = TRUE)$value
  12.  
  13.     ### MAPS (mps) -------------------------------------------------------------------------------------------------------------
  14.     source(file.path("server", "svr_mps.R"),  local = TRUE)$value
  15.    
  16.     ### ADVANCED (adv) ------------------------------------------------------------------------------------------------------------
  17.     source(file.path("server", "svr_adv.R"),  local = TRUE)$value
  18.  
  19. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement