View source: R/dictionary.annotations.R
dictionary.annotate | R Documentation |
Apply or remove an annotation from a set of variables.
dictionary.annotate(
tibble,
variables = NULL,
taxonomy = "Mlstr_area",
vocabulary,
term
)
tibble |
Tibble to be annotated. |
variables |
A character vector of variable names to be annotated. If NULL or empty, all the columns of the tibble will be annotated. |
taxonomy |
The taxonomy to which the vocabulary belongs. If NULL, the annotation is a simple attribute (i.e. without a taxonomy reference). |
vocabulary |
The vocabulary to which the term belongs. |
term |
The term to apply. If NULL, the annotation will be deleted. |
The annotated tibble
## Not run:
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
cqx <- opal.table_get(o, "CPTP", "Cag_coreqx")
cqx <- dictionary.annotate(cqx,
variables = c("A_SDC_EDU_LEVEL", "A_SDC_EDU_LEVEL_AGE"),
taxonomy = "Mlstr_area",
vocabulary = "Sociodemographic_economic_characteristics",
term = "Education")
opal.logout(o)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.