Advertisement
Guest User

Untitled

a guest
Dec 14th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. con <- dbConnect(MySQL(),
  2. user = '#',
  3. password = '#',
  4. host = '#',
  5. dbname='#')
  6.  
  7. tickets<-dbGetQuery(con, "Select * from table")
  8. issues_speed_unique<-unique(na.omit(dbGetQuery(con,"Select * from table2")))
  9. dbDisconnect (con)
  10.  
  11. some aggregations....
  12.  
  13. shinyServer(
  14. function(input,output){
  15. ...
  16.  
  17. shinyUI(fluidPage(
  18. ...
  19.  
  20. shinyApp(ui = ui, server = server)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement