Dataset$update_variables
Dataset$update_variables(variables) → void
Parameters:
Returns:
Examples:
dataset = redivis$dataset("dataset.reference")
dataset$update_variables(list(
list(
# All attrs other than "name" are optional.
# To remove a value, set it to None
name = "var_name",
label = "my_label",
description = "my_description",
valueLabels = list(
list(value = "1", label = "Yes"),
list(value = "2", label = "No"),
...
)
)
...
))Last updated
Was this helpful?

