| collect | R Documentation |
collect() is a convenience alias for as_tibble() for shard table outputs.
collect(x, ...)
x |
A shard table handle ( |
... |
Passed to |
A data.frame (or tibble if the tibble package is installed).
s <- schema(x = float64(), y = int32())
tb <- table_buffer(s, nrow = 5L)
table_write(tb, idx_range(1, 5), data.frame(x = rnorm(5), y = 1:5))
handle <- table_finalize(tb)
df <- collect(handle)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.