Organization
class Organization
Used to list and reference resources (e.g., datasets) within an organization.
Constructors
redivis$organization
(user_name)
Construct a reference to an organization based on its (case-insensitive) username.
Examples
library("redivis")
# Reference the Demo organization (https://redivis.com/Demo)
organization <- redivis$organization("demo")
# List all datasets
datasets <- organization$list_datasets()
# Create a reference to a specific dataset
dataset <- organization$dataset("ghcn_daily_weather_data")
Methods
organization$dataset
(dataset_name[, ...])
Construct a reference to a dataset in the organization.
organization$list_datasets
([max_results])
List all datasets in the organization.
organization$secret
(name)
Create a reference to a secret defined by the organization.
Last updated
Was this helpful?