├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check-hard.yaml │ ├── R-CMD-check.yaml │ ├── html-5-check.yaml │ ├── lint.yaml │ └── pkgdown.yml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── add_labels.R ├── as_character.R ├── as_factor.R ├── as_label.R ├── as_labelled.R ├── as_numeric.R ├── convert_case.R ├── copy_labels.R ├── drop_labels.R ├── efc.R ├── fill_labels.R ├── get_label.R ├── get_labels.R ├── get_model_labels.R ├── get_na.R ├── get_values.R ├── helpfunctions.R ├── is_labelled.R ├── label_to_colnames.R ├── read.R ├── remove_all_labels.R ├── remove_label.R ├── remove_labels.R ├── select_helpers.R ├── set_label.R ├── set_labels.R ├── set_na.R ├── tidy_labels.R ├── unlabel.R ├── utils_get_dots.R ├── val_labels.R ├── var_labels.R ├── write.R └── zap_labels.R ├── README.md ├── _pkgdown.yml ├── data └── efc.RData ├── inst └── CITATION ├── man ├── add_labels.Rd ├── as_factor.Rd ├── as_label.Rd ├── as_labelled.Rd ├── as_numeric.Rd ├── convert_case.Rd ├── copy_labels.Rd ├── efc.Rd ├── figures │ └── logo.png ├── get_label.Rd ├── get_labels.Rd ├── get_na.Rd ├── get_values.Rd ├── is_labelled.Rd ├── label_to_colnames.Rd ├── read_spss.Rd ├── remove_all_labels.Rd ├── remove_label.Rd ├── set_label.Rd ├── set_labels.Rd ├── set_na.Rd ├── sjlabelled-package.Rd ├── term_labels.Rd ├── tidy_labels.Rd ├── unlabel.Rd ├── write_spss.Rd ├── zap_labels.Rd └── zap_na_tags.Rd ├── sjlabelled.Rproj ├── sjlabelled.code-workspace ├── tests ├── testthat.R └── testthat │ ├── test-as_numeric.R │ └── test-remove_labels.R └── vignettes ├── intro_sjlabelled.Rmd ├── labelleddata.Rmd └── quasiquotation.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-hard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.github/workflows/R-CMD-check-hard.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/html-5-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.github/workflows/html-5-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.github/workflows/pkgdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/add_labels.R -------------------------------------------------------------------------------- /R/as_character.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/as_character.R -------------------------------------------------------------------------------- /R/as_factor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/as_factor.R -------------------------------------------------------------------------------- /R/as_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/as_label.R -------------------------------------------------------------------------------- /R/as_labelled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/as_labelled.R -------------------------------------------------------------------------------- /R/as_numeric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/as_numeric.R -------------------------------------------------------------------------------- /R/convert_case.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/convert_case.R -------------------------------------------------------------------------------- /R/copy_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/copy_labels.R -------------------------------------------------------------------------------- /R/drop_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/drop_labels.R -------------------------------------------------------------------------------- /R/efc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/efc.R -------------------------------------------------------------------------------- /R/fill_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/fill_labels.R -------------------------------------------------------------------------------- /R/get_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/get_label.R -------------------------------------------------------------------------------- /R/get_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/get_labels.R -------------------------------------------------------------------------------- /R/get_model_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/get_model_labels.R -------------------------------------------------------------------------------- /R/get_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/get_na.R -------------------------------------------------------------------------------- /R/get_values.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/get_values.R -------------------------------------------------------------------------------- /R/helpfunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/helpfunctions.R -------------------------------------------------------------------------------- /R/is_labelled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/is_labelled.R -------------------------------------------------------------------------------- /R/label_to_colnames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/label_to_colnames.R -------------------------------------------------------------------------------- /R/read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/read.R -------------------------------------------------------------------------------- /R/remove_all_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/remove_all_labels.R -------------------------------------------------------------------------------- /R/remove_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/remove_label.R -------------------------------------------------------------------------------- /R/remove_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/remove_labels.R -------------------------------------------------------------------------------- /R/select_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/select_helpers.R -------------------------------------------------------------------------------- /R/set_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/set_label.R -------------------------------------------------------------------------------- /R/set_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/set_labels.R -------------------------------------------------------------------------------- /R/set_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/set_na.R -------------------------------------------------------------------------------- /R/tidy_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/tidy_labels.R -------------------------------------------------------------------------------- /R/unlabel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/unlabel.R -------------------------------------------------------------------------------- /R/utils_get_dots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/utils_get_dots.R -------------------------------------------------------------------------------- /R/val_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/val_labels.R -------------------------------------------------------------------------------- /R/var_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/var_labels.R -------------------------------------------------------------------------------- /R/write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/write.R -------------------------------------------------------------------------------- /R/zap_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/R/zap_labels.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data/efc.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/data/efc.RData -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/add_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/add_labels.Rd -------------------------------------------------------------------------------- /man/as_factor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/as_factor.Rd -------------------------------------------------------------------------------- /man/as_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/as_label.Rd -------------------------------------------------------------------------------- /man/as_labelled.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/as_labelled.Rd -------------------------------------------------------------------------------- /man/as_numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/as_numeric.Rd -------------------------------------------------------------------------------- /man/convert_case.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/convert_case.Rd -------------------------------------------------------------------------------- /man/copy_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/copy_labels.Rd -------------------------------------------------------------------------------- /man/efc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/efc.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/get_label.Rd -------------------------------------------------------------------------------- /man/get_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/get_labels.Rd -------------------------------------------------------------------------------- /man/get_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/get_na.Rd -------------------------------------------------------------------------------- /man/get_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/get_values.Rd -------------------------------------------------------------------------------- /man/is_labelled.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/is_labelled.Rd -------------------------------------------------------------------------------- /man/label_to_colnames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/label_to_colnames.Rd -------------------------------------------------------------------------------- /man/read_spss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/read_spss.Rd -------------------------------------------------------------------------------- /man/remove_all_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/remove_all_labels.Rd -------------------------------------------------------------------------------- /man/remove_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/remove_label.Rd -------------------------------------------------------------------------------- /man/set_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/set_label.Rd -------------------------------------------------------------------------------- /man/set_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/set_labels.Rd -------------------------------------------------------------------------------- /man/set_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/set_na.Rd -------------------------------------------------------------------------------- /man/sjlabelled-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/sjlabelled-package.Rd -------------------------------------------------------------------------------- /man/term_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/term_labels.Rd -------------------------------------------------------------------------------- /man/tidy_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/tidy_labels.Rd -------------------------------------------------------------------------------- /man/unlabel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/unlabel.Rd -------------------------------------------------------------------------------- /man/write_spss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/write_spss.Rd -------------------------------------------------------------------------------- /man/zap_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/zap_labels.Rd -------------------------------------------------------------------------------- /man/zap_na_tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/man/zap_na_tags.Rd -------------------------------------------------------------------------------- /sjlabelled.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/sjlabelled.Rproj -------------------------------------------------------------------------------- /sjlabelled.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/sjlabelled.code-workspace -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-as_numeric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/tests/testthat/test-as_numeric.R -------------------------------------------------------------------------------- /tests/testthat/test-remove_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/tests/testthat/test-remove_labels.R -------------------------------------------------------------------------------- /vignettes/intro_sjlabelled.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/vignettes/intro_sjlabelled.Rmd -------------------------------------------------------------------------------- /vignettes/labelleddata.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/vignettes/labelleddata.Rmd -------------------------------------------------------------------------------- /vignettes/quasiquotation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strengejacke/sjlabelled/HEAD/vignettes/quasiquotation.Rmd --------------------------------------------------------------------------------