Description Usage Arguments Value Examples
Like dplyr::select, but allows for the first argument to be a src_vertica object for SELECT statements without FROM clauses.
1 |
.arg |
dplyr tbl OR src_vertica connection object |
... |
table columns (i.e., as used in mutate()) |
evalNames |
pre-evaluate the statement to get column names of result (useful for functions that return more than one column) |
collapse |
collapse query into subquery (DEFAULT is TRUE); FALSE is needed for certain procedures quiring that the procedure name cannot be a part of a subquery |
a tbl_vertica object
1 2 3 4 5 6 | ## Not run:
vertica <- src_vertica("VerticaDSN")
table <- select(vertica,foo=some_fun())
table2 <- select(table,some_col_in_table)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.