eatGADS
(educational assessment tools: Greatest
Assumable Data Set) is the data management and data handling tool used
by the Institute for Educational Quality Improvement in Germany (IQB). It has a strong focus on
(automated) handling and processing of meta data.
eatGADS
uses SQLite3 as a back end and
is especially suited for importing data stored as SPSS
files. eatDB is used
for data base creation and use, haven is used for
importing SPSS files.
# Install stable version from CRAN via
install.packages("eatGADS")
# Install development version from GitHub via
::install_github("beckerbenj/eatGADS") remotes
The functionality of eatGADS
is extensively documented
in its various vignettes. If you have questions regarding existing
functionality or requests for new features, contact the package
author.
# import SPSS data
<- system.file("extdata", "pisa.zsav", package = "eatGADS")
sav_path <- import_spss(sav_path)
gads_obj
# see names of variables in the data set
namesGADS(gads_obj)
# extract meta data for specific variables
extractMeta(gads_obj, vars = c("schtype", "idschool"))
# extract data for data analysis while applying missing tags and value labels
<- extractData(gads_obj, convertLabels = "character") dat1