Create, modify, and delete columns
These are methods for the dplyr mutate() and transmute() generics.
They are translated to computed expressions in the SELECT clause of
the SQL query.
## S3 method for class 'tbl_lazy' mutate(.data, ...)
.data |
A lazy data frame backed by a database query. |
... |
< |
Another tbl_lazy. Use show_query() to see the generated
query, and use collect() to execute the query
and return data to R.
library(dplyr, warn.conflicts = FALSE) db <- memdb_frame(x = 1:5, y = 5:1) db %>% mutate(a = (x + y) / 2, b = sqrt(x^2L + y^2L)) %>% show_query() # dbplyr automatically creates subqueries as needed db %>% mutate(x1 = x + 1, x2 = x1 * 2) %>% show_query()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.