arrow_table | R Documentation |
Create an Arrow Table
arrow_table(..., schema = NULL)
... |
A |
schema |
a Schema, or |
Table
tbl <- arrow_table(name = rownames(mtcars), mtcars)
dim(tbl)
dim(head(tbl))
names(tbl)
tbl$mpg
tbl[["cyl"]]
as.data.frame(tbl[4:8, c("gear", "hp", "wt")])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.