redivis
package Redivis
The redivis package, available via library("redivis")
. Through its various methods, you can create, update, query, and read from resources on Redivis.
To avoid conflicts with other packages and base R function names, redivis's top level functions are hosted in the redivis
namespace, and accessible via the redivis$
prefix. This means that code written for Redivis in Python, R, and Javascript is quite similar.
Previous versions of redivis-r recommended accessing top-level methods via the redivis::
syntax (e.g., redivis::user()
). While this syntax is still supported, it is no longer recommended, and we recommend migrating existing code to use the $
syntax.
Methods
Construct a reference to the current notebook. Can only be called within a Redivis notebook.
redivis$file
(file_id)
Construct a new File instance.
redivis$organization
(user_name)
Construct a new Organization instance.
redivis$query
(query_string)
Execute a SQL query, returning a Query instance.
redivis$table
(table_reference)
Construct a new Table instance. This method can only be called if default workflow / dataset is set (this is automatically set within a Redivis notebook to that notebook's workflow).
redivis$user
(user_name)
Construct a new User instance.
Examples
Last updated