Table
class Table
Tables are the fundamental data-containing entity in Redivis. Various methods on this class allow you to read data from Redivis tables into R.
Examples
Constructors
| Return a Table within the current default scope (either a dataset or project). In a Redivis notebook, the default scope will always be the notebook's project. |
| Return a Table within a specific dataset. |
| Return a Table within a specific project. |
Attributes
| A named list containing the API resource representation of the table. This will only be populated after one of the table methods that read data are called. |
Methods
Reading data and metadata | |
| Export a table in a particular format and download it to disk. |
| Download all files represented in a file index table to a local directory. |
Check whether the table exists | |
Fetch table metadata. Once called, the | |
| Return a list of File instances in a file index table. |
| Return a list of Variable instances associated with this table. |
| Returns a reader that mimics the Arrow RecordBatchStreamReader, which can then be consumed to process batches of rows in a streaming fashion. |
| Return an Arrow Dataset for the table. Data is backed by disk, allowing for larger-than-memory analysis. |
| Return an Arrow Table with the table's data. This is the highest-performance option for loading data in-memory. |
| Return a data.frame with the table's data. |
| Return a data.table with the table's data. |
| Return a tibble with the table's data. |
| Return a simple features tibble with a table's data. Used for tables that contain a geography variable. |
| Reference a Variable within the table. |
Uploading and modifying data | |
| Create a table within a dataset if it doesn't already exist. Table must belong to an unreleased version of the dataset. |
Delete a table belonging to an unreleased version of a dataset. | |
Update properties on the table (name, description). |
Last updated