redivis$table
redivis$table(name) → Table
Parameters:
Returns:
Examples
# This assumes that either:
# - The env variable REDIVIS_DEFAULT_DATASET=demo.iris_species (or some other dataset with an "iris" table)
# - Or, that we're running this in a notebook whose workflow contains a table names "iris"
table <- redivis$table("iris")
table$to_tibble()
# Id SepalLengthCm SepalWidthCm PetalLengthCm PetalWidthCm Species
# 0 33 5.2 4.1 1.5 0.1 Iris-setosa
# ...
# If in a Redivis notebook, you can always reference the source table as "_source_"
notebook_source_table <- redivis$table("_source_")Was this helpful?

