Get all values for a specific table group
Usage
get_metadata_table_values(
idTable = NULL,
idGroup = NULL,
det = 0,
lang = "ES",
validate = TRUE,
verbose = FALSE
)
Arguments
- idTable
(int): id of the table. For further information about ids click this link.
- idGroup
(int): id of the group of variables. To get all groups for a specific table see
get_metadata_table_groups()
.- det
(int): level of detail. Valid values: 0, 1 or 2.
- lang
(string): language of the retrieved data. Set to 'ES' for Spanish or set to 'EN' for English.
- validate
(logical): validate input parameters. A FALSE value means fewer API calls.
- verbose
(logical): print additional information, including the URL to call the API service.
Value
Data frame with information of the values of a table group according to the table and group specified in the function
Examples
if (FALSE) { # interactive()
# Get the values of the group "110889" of the table with identification
# code "50902"
df <- get_metadata_table_values(idTable = 50902, idGroup = 110889, validate = FALSE)
head(df)
}