Dataset
class Dataset
Datasets 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
Attributes
| A reference to the Organization instance that constructed this dataset. Will be |
| A dict 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
| Add labels to a dataset. |
| 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. |
| List all versions for the dataset. |
| Create a query scoped to the dataset. |
Release the | |
Remove labels from a dataset. | |
| Create a reference to a specific table within the dataset. |
Unrelease the current version of the dataset, moving it back to an unreleased, "next" version. | |
| Update certain attributes on the dataset. |
| Create a reference to a version instance at a particular tag. |
Last updated