if (FALSE) {
# Retrieve a dataset to use the function
d <- CEOdata()
# Get the whole set of variable labels
CEOsearch(d)
# Get the whole set of value labels
CEOsearch(d, where = "values")
# Search for specific variable names and variable labels with the string "edat" (age).
CEOsearch(d, keyword = "edat")
# Search for specific variable names and variable labels with the string "edat" (age),
# and translate the results to English.
CEOsearch(d, keyword = "edat", translate = TRUE)
# now for the combination of "valoracio" OR "covid" OR "govern".
CEOsearch(d, keyword = c("valoració", "covid", "govern"))
}
Run the code above in your browser using DataLab