# get path to example data from the opendataformat package (data.zip)
path <- system.file("extdata", "data.odf.zip", package = "opendataformat")
path
# read example data specified as Open Data Format from ZIP file
df <- read_odf(file = path)
attributes(df)
attributes(df$bap87)
# read example data with language selection
df <- read_odf(file = path, languages = "de")
attributes(df$bap87)
Run the code above in your browser using DataLab