Guest User

Untitled

a guest
Jan 15th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. con <- dbConnect(RMySQL::MySQL(), host = "localhost",dbname="rbaseball"
  2. ,user = "root", password = "")
  3. dbWriteTable(con, "mtcars", mtcars, overwrite = TRUE)
  4. res <- dbSendQuery(con, "SELECT * FROM mtcars ORDER BY cyl")
  5. dbApply(res, INDEX="cyl", FUN = function(x,grp) {quantile(x$mpg)})
Add Comment
Please, Sign In to add comment