Dataset
class Dataset
Dataset on Redivis are the entity where data is stored. Datasets are made up of tables, non-tabular files, and various metadata. Datasets can be owned by a user or organization, and are version controlled.
Constructors
| Construct a new dataset instance that references a dataset owned by an organization. |
| Returns a list of Datasets owned by an organization. |
| Construct a new dataset instance that references a dataset owned by a user. |
| Returns a list of Datasets owned by a user. |
Examples
Fields
Name | Description |
---|---|
| A reference to the Organization instance that constructed this dataset. Will be |
| A named list containing the API resource representation of the dataset. This will be fully populated after calling get(), create_next_version(), and release(), otherwise will be |
| The fully qualified reference for the dataset, which can be used in SQL queries or the REST API. E.g., |
| The canonical reference for the dataset, without the username qualifier. E.g.,: |
| A reference to the User instance that constructed this dataset. Will be |
Methods
| Create a new dataset. |
| Create a "next" (unreleased) version on the dataset. Data can only be uploaded to unreleased versions. |
Delete the dataset. | |
Check whether the dataset exists. | |
Get the dataset, populating the | |
| List all tables in the dataset. |
| Create a query scoped to the dataset. |
Release the | |
| Create a reference to a specific table within the dataset. |
| Update certain attributes on the dataset. |
Last updated