Get a vector of attribute values (for each locale) matching the given attribute namespace and name. Vector is null if no such attribute is found.

opal.attribute_values(attributes, namespace = NULL, name = "label")

Arguments

attributes

A list of attributes, usually variable or category attributes.

namespace

Optional attribute namespace.

name

Required attribute name.

Examples

if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
var <- opal.variable(o, 'CNSIM', 'CNSIM1', 'GENDER')
opal.attribute_values(var$attributes)
opal.logout(o)
}