Lists databases, nodes and tables in Estonian National Institute for Health Development (Tervise Arengu Instituut, TAI) database.

get_all_tables(local = TRUE, lang = c("et", "en"), verbose = FALSE)

Arguments

local

whether to return package internal table of available datasets. A logical, defaults to TRUE.

lang

Language. Estonian 'et' or english 'en'. Affects table titles and variable names.

verbose

Display messages to track query progress, defaults to TRUE.

Value

A data_frame with following columns:

Database

Database name as available at TAI.

Node

Database node name.

Name

Variable name. This name should be used to download variable values.

Title

Description of the variable.

Updated

Time of the last update.

Examples

# NOT RUN {
tabs <- get_all_tables()

# In RStudio, it is convenient to use View function
View(tabs)
# }