This function brings a Crunch dataset into memory so that you can
work with the data using R functions. Since this can create a long running
query it is recommended that you try to filter the dataset down as much as possible
before running collect()
.
# S3 method for CrunchDataset collect(x, ...) # S3 method for GroupedCrunchDataset collect(x, ...)
x | A Crunch Dataset |
---|---|
... | Other arguments passed to |
A tbl_df
or grouped_df
When collecting a grouped CrunchDataset, the grouping will be preserved.