collect()
returns a tibble, grouped if needed
compute()
returns a new lazy_dt
as.data.table()
returns a data.table
as.data.frame()
returns a data frame
as_tibble()
returns a tibble
# S3 method for dtplyr_step collect(x, ...) # S3 method for dtplyr_step compute(x, ...) # S3 method for dtplyr_step as.data.table(x, keep.rownames = FALSE, ...) # S3 method for dtplyr_step as.data.frame(x, ...) # S3 method for dtplyr_step as_tibble(x, ...)
x | A lazy_dt |
---|---|
... | Arguments used by other methods. |
keep.rownames | Ignored as dplyr never preseres rownames. |