├── .Rbuildignore ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── DDI_Codebook_2.6.R ├── DDIwR_package.R ├── children.R ├── convert.R ├── exportCodebook.R ├── getCodebook.R ├── internals.R ├── makeCategories.R ├── makeDataNotes.R ├── makeElement.R ├── onAttach.R ├── recodeCharcat.R ├── recodeMissings.R ├── searchFor.R ├── setupfile.R ├── showDetails.R ├── testValid.R └── updateCodebook.R ├── README.Rmd ├── README.md ├── images └── StatConverter.png ├── inst ├── ChangeLog └── WORDLIST ├── man ├── DDI-children.Rd ├── DDIwR_internal.Rd ├── DDIwR_package.Rd ├── convert.Rd ├── exportCodebook.Rd ├── getCodebook.Rd ├── makeCategories.Rd ├── makeDataNotes.Rd ├── makeElement.Rd ├── recodeCharcat.Rd ├── recodeMissings.Rd ├── searchFor.Rd ├── setupfile.Rd ├── showDetails.Rd ├── testValid.Rd └── updateCodebook.Rd └── tests ├── spelling.R ├── testthat.R └── testthat ├── test-checkType.R ├── test-collectMetadata.R ├── test-convert.R ├── test-getCodebook.R ├── test-getFormat.R ├── test-makeLabelled.R ├── test-recodeCharcat.R ├── test-recodeMissings.R └── test-utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/DDI_Codebook_2.6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/DDI_Codebook_2.6.R -------------------------------------------------------------------------------- /R/DDIwR_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/DDIwR_package.R -------------------------------------------------------------------------------- /R/children.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/children.R -------------------------------------------------------------------------------- /R/convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/convert.R -------------------------------------------------------------------------------- /R/exportCodebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/exportCodebook.R -------------------------------------------------------------------------------- /R/getCodebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/getCodebook.R -------------------------------------------------------------------------------- /R/internals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/internals.R -------------------------------------------------------------------------------- /R/makeCategories.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/makeCategories.R -------------------------------------------------------------------------------- /R/makeDataNotes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/makeDataNotes.R -------------------------------------------------------------------------------- /R/makeElement.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/makeElement.R -------------------------------------------------------------------------------- /R/onAttach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/onAttach.R -------------------------------------------------------------------------------- /R/recodeCharcat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/recodeCharcat.R -------------------------------------------------------------------------------- /R/recodeMissings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/recodeMissings.R -------------------------------------------------------------------------------- /R/searchFor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/searchFor.R -------------------------------------------------------------------------------- /R/setupfile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/setupfile.R -------------------------------------------------------------------------------- /R/showDetails.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/showDetails.R -------------------------------------------------------------------------------- /R/testValid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/testValid.R -------------------------------------------------------------------------------- /R/updateCodebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/R/updateCodebook.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/README.md -------------------------------------------------------------------------------- /images/StatConverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/images/StatConverter.png -------------------------------------------------------------------------------- /inst/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/inst/ChangeLog -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/DDI-children.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/DDI-children.Rd -------------------------------------------------------------------------------- /man/DDIwR_internal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/DDIwR_internal.Rd -------------------------------------------------------------------------------- /man/DDIwR_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/DDIwR_package.Rd -------------------------------------------------------------------------------- /man/convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/convert.Rd -------------------------------------------------------------------------------- /man/exportCodebook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/exportCodebook.Rd -------------------------------------------------------------------------------- /man/getCodebook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/getCodebook.Rd -------------------------------------------------------------------------------- /man/makeCategories.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/makeCategories.Rd -------------------------------------------------------------------------------- /man/makeDataNotes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/makeDataNotes.Rd -------------------------------------------------------------------------------- /man/makeElement.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/makeElement.Rd -------------------------------------------------------------------------------- /man/recodeCharcat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/recodeCharcat.Rd -------------------------------------------------------------------------------- /man/recodeMissings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/recodeMissings.Rd -------------------------------------------------------------------------------- /man/searchFor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/searchFor.Rd -------------------------------------------------------------------------------- /man/setupfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/setupfile.Rd -------------------------------------------------------------------------------- /man/showDetails.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/showDetails.Rd -------------------------------------------------------------------------------- /man/testValid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/testValid.Rd -------------------------------------------------------------------------------- /man/updateCodebook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/man/updateCodebook.Rd -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-checkType.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-checkType.R -------------------------------------------------------------------------------- /tests/testthat/test-collectMetadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-collectMetadata.R -------------------------------------------------------------------------------- /tests/testthat/test-convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-convert.R -------------------------------------------------------------------------------- /tests/testthat/test-getCodebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-getCodebook.R -------------------------------------------------------------------------------- /tests/testthat/test-getFormat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-getFormat.R -------------------------------------------------------------------------------- /tests/testthat/test-makeLabelled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-makeLabelled.R -------------------------------------------------------------------------------- /tests/testthat/test-recodeCharcat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-recodeCharcat.R -------------------------------------------------------------------------------- /tests/testthat/test-recodeMissings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-recodeMissings.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusadrian/DDIwR/HEAD/tests/testthat/test-utils.R --------------------------------------------------------------------------------