Skip to contents

Add a dataset to a container

Usage

# S3 method for RIDLDataset
ridl_dataset_container_set(dataset, container_name, configuration = NULL)

# S3 method for RIDLDataset
rd_container_set(dataset, container_name, configuration = NULL)

ridl_dataset_container_set(dataset, container_name, configuration)

# S3 method for default
ridl_dataset_container_set(dataset, container_name, configuration)

rd_container_set(dataset, container_name, configuration)

# S3 method for default
rd_container_set(dataset, container_name, configuration)

Arguments

dataset

RIDLDataset, the dataset

container_name

charater, A valid RIDL container name, you can use ridl_container_list() to have the list of all containers

configuration

RIDLConfig, the RIDL configuration

Value

A RIDLDataset

Examples

if (FALSE) {
 ds <- RIDLdataset$new(list(name = "cool-dataset"))
 rd_container_set(ds, "zimbabwe-shelter-nfi")
}