inv_gc | R Documentation |
Run garbage collection without the gc()
output. Can also be run in the middle of a long pipe chain.
Useful for large datasets or when using parallel processing.
inv_gc(x)
x |
Optional. If missing runs |
# Can be run with no input
inv_gc()
df <- tidytable(col1 = 1, col2 = 2)
# Or can be used in the middle of a pipe chain (object is unaltered)
df %>%
filter(col1 < 2, col2 < 4) %>%
inv_gc() %>%
select(col1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.