Skip to contents

Allows you to browse the dictionary of the surveys in a web interface where you can check the name and label of the variables, as well as the data labels.

Usage

browse_dict(dict, ...)

Arguments

dict

database dictionary

...

for testing purposes

Value

a web interface with the data contained in the supplied dictionary

Examples

if (FALSE) {
dict <- list(
  SEX = list(
    lab = "Sex of the person",
    labs = c("Man" = 1, "Woman" = 2)
  ),
  MARITAL_STATUS = list(
    lab = "Marital status of the person",
    labs = c("Single" = 1, "Married" = 2, "Widower" = 3)
  ),
  HEIGHT = list(
    lab = "Person height",
    labs = c("Short" = 1, "Normal" = 2, "High" = 3)
  )
)
browse_dict(dict)
}