├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── cleansing_corpus.R ├── identify_language.R ├── isco_occupations_bundle.R ├── occupations_bundle.R ├── occupations_classify.R ├── sysdata.rda ├── tf_idf.R ├── utilities.R └── utils-data-table.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── esco_bundle_occupations_1.0.8 │ ├── occupations_bg.csv │ ├── occupations_cs.csv │ ├── occupations_da.csv │ ├── occupations_de.csv │ ├── occupations_el.csv │ ├── occupations_en.csv │ ├── occupations_es.csv │ ├── occupations_et.csv │ ├── occupations_fi.csv │ ├── occupations_fr.csv │ ├── occupations_ga.csv │ ├── occupations_hr.csv │ ├── occupations_hu.csv │ ├── occupations_is.csv │ ├── occupations_it.csv │ ├── occupations_lt.csv │ ├── occupations_lv.csv │ ├── occupations_mt.csv │ ├── occupations_nl.csv │ ├── occupations_no.csv │ ├── occupations_pl.csv │ ├── occupations_pt.csv │ ├── occupations_ro.csv │ ├── occupations_sk.csv │ ├── occupations_sl.csv │ └── occupations_sv.csv ├── isco_bundle_occupations_1.0.8 │ ├── ISCOGroups_bg.csv │ ├── ISCOGroups_cs.csv │ ├── ISCOGroups_da.csv │ ├── ISCOGroups_de.csv │ ├── ISCOGroups_el.csv │ ├── ISCOGroups_en.csv │ ├── ISCOGroups_es.csv │ ├── ISCOGroups_et.csv │ ├── ISCOGroups_fi.csv │ ├── ISCOGroups_fr.csv │ ├── ISCOGroups_ga.csv │ ├── ISCOGroups_hr.csv │ ├── ISCOGroups_hu.csv │ ├── ISCOGroups_is.csv │ ├── ISCOGroups_it.csv │ ├── ISCOGroups_lt.csv │ ├── ISCOGroups_lv.csv │ ├── ISCOGroups_mt.csv │ ├── ISCOGroups_nl.csv │ ├── ISCOGroups_no.csv │ ├── ISCOGroups_pl.csv │ ├── ISCOGroups_pt.csv │ ├── ISCOGroups_ro.csv │ ├── ISCOGroups_sk.csv │ ├── ISCOGroups_sl.csv │ └── ISCOGroups_sv.csv ├── isco_occupations_bundle.R ├── occupations_bundle.R └── occupations_tfidf.R ├── data ├── isco_occupations_bundle.rda └── occupations_bundle.rda ├── docs ├── 404.html ├── LICENSE.html ├── _config.yml ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── codebook.html │ ├── index.html │ ├── labourR_blogpost.html │ ├── labourR_blogpost_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.3 │ │ │ └── header-attrs.js │ ├── occupations_retrieval.html │ └── occupations_retrieval_files │ │ ├── accessible-code-block-0.0.1 │ │ └── empty-anchor.js │ │ └── header-attrs-2.3 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── man │ └── figures │ │ ├── ESCO-ISCO hierarchy.svg │ │ ├── ESCO_ISCO_hierarchy.png │ │ └── ESCO_ISCO_hierarchy.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── classify_occupation.html │ ├── cleansing_corpus.html │ ├── figures │ ├── ESCO-ISCO hierarchy.svg │ ├── ESCO_ISCO_hierarchy.png │ ├── ESCO_ISCO_hierarchy.svg │ ├── README-pressure-1.png │ ├── labourRlogo.png │ └── logo.png │ ├── get_language_code.html │ ├── get_stopwords.html │ ├── identify_language.html │ ├── index.html │ ├── isco_occupations_bundle.html │ ├── occupations_bundle.html │ └── tf_idf.html ├── labourR.Rproj ├── man ├── classify_occupation.Rd ├── cleansing_corpus.Rd ├── figures │ ├── ESCO_ISCO_hierarchy.png │ ├── labourRlogo.png │ └── logo.png ├── get_language_code.Rd ├── get_stopwords.Rd ├── identify_language.Rd ├── isco_occupations_bundle.Rd ├── occupations_bundle.Rd └── tf_idf.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── testthat.R └── testthat │ ├── test-cleansing_corpus.R │ ├── test-identify_language.R │ ├── test-occupations_classify.R │ ├── test-tfidf.R │ └── test-utils.R └── vignettes ├── .gitignore ├── labourR_blogpost.Rmd └── occupations_retrieval.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/cleansing_corpus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/cleansing_corpus.R -------------------------------------------------------------------------------- /R/identify_language.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/identify_language.R -------------------------------------------------------------------------------- /R/isco_occupations_bundle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/isco_occupations_bundle.R -------------------------------------------------------------------------------- /R/occupations_bundle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/occupations_bundle.R -------------------------------------------------------------------------------- /R/occupations_classify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/occupations_classify.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/tf_idf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/tf_idf.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/utils-data-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/R/utils-data-table.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_bg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_bg.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_cs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_cs.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_da.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_de.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_el.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_el.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_en.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_es.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_es.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_et.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_et.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_fi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_fi.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_fr.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_ga.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_ga.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_hr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_hr.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_hu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_hu.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_is.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_is.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_it.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_it.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_lt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_lt.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_lv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_lv.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_mt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_mt.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_nl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_nl.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_no.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_no.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_pl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_pl.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_pt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_pt.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_ro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_ro.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_sk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_sk.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_sl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_sl.csv -------------------------------------------------------------------------------- /data-raw/esco_bundle_occupations_1.0.8/occupations_sv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/esco_bundle_occupations_1.0.8/occupations_sv.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_bg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_bg.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_cs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_cs.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_da.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_de.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_el.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_el.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_en.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_es.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_es.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_et.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_et.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_fi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_fi.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_fr.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_ga.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_ga.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_hr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_hr.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_hu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_hu.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_is.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_is.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_it.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_it.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_lt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_lt.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_lv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_lv.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_mt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_mt.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_nl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_nl.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_no.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_no.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_pl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_pl.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_pt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_pt.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_ro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_ro.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_sk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_sk.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_sl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_sl.csv -------------------------------------------------------------------------------- /data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_sv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_bundle_occupations_1.0.8/ISCOGroups_sv.csv -------------------------------------------------------------------------------- /data-raw/isco_occupations_bundle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/isco_occupations_bundle.R -------------------------------------------------------------------------------- /data-raw/occupations_bundle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/occupations_bundle.R -------------------------------------------------------------------------------- /data-raw/occupations_tfidf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data-raw/occupations_tfidf.R -------------------------------------------------------------------------------- /data/isco_occupations_bundle.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data/isco_occupations_bundle.rda -------------------------------------------------------------------------------- /data/occupations_bundle.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/data/occupations_bundle.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/codebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/codebook.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/labourR_blogpost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/labourR_blogpost.html -------------------------------------------------------------------------------- /docs/articles/labourR_blogpost_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/labourR_blogpost_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/labourR_blogpost_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/labourR_blogpost_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/occupations_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/occupations_retrieval.html -------------------------------------------------------------------------------- /docs/articles/occupations_retrieval_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/occupations_retrieval_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/occupations_retrieval_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/articles/occupations_retrieval_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/man/figures/ESCO-ISCO hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/man/figures/ESCO-ISCO hierarchy.svg -------------------------------------------------------------------------------- /docs/man/figures/ESCO_ISCO_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/man/figures/ESCO_ISCO_hierarchy.png -------------------------------------------------------------------------------- /docs/man/figures/ESCO_ISCO_hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/man/figures/ESCO_ISCO_hierarchy.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/classify_occupation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/classify_occupation.html -------------------------------------------------------------------------------- /docs/reference/cleansing_corpus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/cleansing_corpus.html -------------------------------------------------------------------------------- /docs/reference/figures/ESCO-ISCO hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/figures/ESCO-ISCO hierarchy.svg -------------------------------------------------------------------------------- /docs/reference/figures/ESCO_ISCO_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/figures/ESCO_ISCO_hierarchy.png -------------------------------------------------------------------------------- /docs/reference/figures/ESCO_ISCO_hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/figures/ESCO_ISCO_hierarchy.svg -------------------------------------------------------------------------------- /docs/reference/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/figures/README-pressure-1.png -------------------------------------------------------------------------------- /docs/reference/figures/labourRlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/figures/labourRlogo.png -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/get_language_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/get_language_code.html -------------------------------------------------------------------------------- /docs/reference/get_stopwords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/get_stopwords.html -------------------------------------------------------------------------------- /docs/reference/identify_language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/identify_language.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/isco_occupations_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/isco_occupations_bundle.html -------------------------------------------------------------------------------- /docs/reference/occupations_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/occupations_bundle.html -------------------------------------------------------------------------------- /docs/reference/tf_idf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/docs/reference/tf_idf.html -------------------------------------------------------------------------------- /labourR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/labourR.Rproj -------------------------------------------------------------------------------- /man/classify_occupation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/classify_occupation.Rd -------------------------------------------------------------------------------- /man/cleansing_corpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/cleansing_corpus.Rd -------------------------------------------------------------------------------- /man/figures/ESCO_ISCO_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/figures/ESCO_ISCO_hierarchy.png -------------------------------------------------------------------------------- /man/figures/labourRlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/figures/labourRlogo.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_language_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/get_language_code.Rd -------------------------------------------------------------------------------- /man/get_stopwords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/get_stopwords.Rd -------------------------------------------------------------------------------- /man/identify_language.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/identify_language.Rd -------------------------------------------------------------------------------- /man/isco_occupations_bundle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/isco_occupations_bundle.Rd -------------------------------------------------------------------------------- /man/occupations_bundle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/occupations_bundle.Rd -------------------------------------------------------------------------------- /man/tf_idf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/man/tf_idf.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-cleansing_corpus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/tests/testthat/test-cleansing_corpus.R -------------------------------------------------------------------------------- /tests/testthat/test-identify_language.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/tests/testthat/test-identify_language.R -------------------------------------------------------------------------------- /tests/testthat/test-occupations_classify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/tests/testthat/test-occupations_classify.R -------------------------------------------------------------------------------- /tests/testthat/test-tfidf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/tests/testthat/test-tfidf.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/labourR_blogpost.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/vignettes/labourR_blogpost.Rmd -------------------------------------------------------------------------------- /vignettes/occupations_retrieval.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eworx-org/labourR/HEAD/vignettes/occupations_retrieval.Rmd --------------------------------------------------------------------------------