R-Package opendataformat

The opendataformat package is specifically designed to facilitate the seamless utilization of the Open Data Format. It offers functionality to import data from the Open Data Format into an R data frame, as well as export data from an R data frame to the Open Data Format. Additionally, you can easily access comprehensive information about the dataset and variables using either the RStudio Viewer or your web browser. This user-friendly approach ensures convenient exploration and utilization of dataset information within your preferred environment.

For more comprehensive insights into the Open Data Format specification, look at the Specification. This resource provides detailed documentation and profiles illustrating the storage locations of attributes within the Open Data Format, as well as within the native formats to which they will be converted.

Additionally, you can download a practical example of a data file in the Open Data Format (example_dataset.zip).

Learn more about the Open Data Format in R in vignette("opendataformat").


Installation

At this point the R package can be installed from Zenodo.

# Install the latest version of the opendataformat package from Zenodo:
install.packages("https://zenodo.org/records/13683314/files/opendataformat_1.2.1.tar.gz",
                 repos=NULL, method="libcurl")

Alternatively the development version can be installed from GitHub.

# Install development version from GitHub:
# install.packages("devtools")
devtools::install_git("https://github.com/opendataformat/r-package-opendataformat.git")


Getting Started

The opendataformat package consists of five main functions:


Multilingual Datasets

When working with a multilingual dataset, the opendataformatr package provides the option to specify the language you want to work with for the main functions: read_odf(), docu_odf(), write_odf(), and odf_labels().

You can achieve this by using the languages argument and setting it to either all to include all languages, current (or default) to use the currently activated language, or by specifying the language code such as de for German or en for English. This allows you to easily select the desired language for your dataset operations. The language codes are defined by the ISO 639-1. Note that for the function odf_labels() you can specify only one language, therefore the language argument only takes single languages as input.


Getting Help

If you encounter a clear bug, please file a minimal reproducible example on Github.