Table
class Table
Examples
library("redivis")
# Specify the table's container, either a dataset or workflow
dataset <- redivis$organization("Demo")$dataset("iris_species")
table <- dataset$table("Iris")
table$to_tibble()
# Id SepalLengthCm SepalWidthCm PetalLengthCm PetalWidthCm Species
# 0 33 5.2 4.1 1.5 0.1 Iris-setosa
# ...
# Other methods to read data:
# table$to_arrow_batch_reader()
# table$to_arrow_dataset()
# table$to_arrow_dataset()
# table$to_data_frame()
# table$to_data_table()
# table$to_sf_tibble()library("redivis")
dataset <- redivis$user("demo")$dataset("Example non-tabular files")
table <- dataset$table("tiffs")
table$download_files("/path/to/directory", overwrite=TRUE)Constructors
Attributes
Methods
Was this helpful?

