compareGADS {eatGADS} | R Documentation |
Compare two GADS.
Description
Compare multiple variables of two GADSdat
or all_GADSdat
objects.
Usage
compareGADS(
GADSdat_old,
GADSdat_new,
varNames,
output = c("list", "data.frame", "aggregated")
)
Arguments
GADSdat_old |
|
GADSdat_new |
|
varNames |
Character string of variable names to be compared. |
output |
How should the output be structured? |
Details
Returns "all equal"
if the variable is identical across the objects or a data.frame
containing a frequency table with the values which have been changed. Especially useful for checks
after recoding.
Value
Returns either a list with "all equal"
and data.frames
or a single data.frame
.
Examples
# Recode a GADS
pisa2 <- recodeGADS(pisa, varName = "schtype",
oldValues = 3, newValues = 9)
pisa2 <- recodeGADS(pisa2, varName = "language",
oldValues = 1, newValues = 15)
# Compare
compareGADS(pisa, pisa2,
varNames = c("ganztag", "schtype", "language"), output = "list")
compareGADS(pisa, pisa2,
varNames = c("ganztag", "schtype", "language"), output = "data.frame")
compareGADS(pisa, pisa2,
varNames = c("ganztag", "schtype", "language"), output = "aggregated")
[Package eatGADS version 1.1.0 Index]