├── .Rbuildignore ├── .github └── workflows │ ├── check-full.yaml │ └── website.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── clean.R ├── currency.R ├── data.R ├── format_datetime.R ├── format_names.R ├── format_p_value.R ├── freq.R ├── helpers.R ├── na_replace.R ├── percentage.R ├── rdate.R ├── regex_true_false.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data └── unclean.rda ├── data_raw └── unclean.R ├── inst └── symbols.txt ├── man ├── clean.Rd ├── currency.Rd ├── format_datetime.Rd ├── format_names.Rd ├── format_p_value.Rd ├── freq.Rd ├── na_replace.Rd ├── percentage.Rd ├── rdate.Rd ├── regex_true_false.Rd └── unclean.Rd ├── pkgdown └── extra.css └── tests ├── testthat.R └── testthat ├── test-clean.R ├── test-currency.R ├── test-freq.R ├── test-percentage.R └── test-rdate.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/check-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/.github/workflows/check-full.yaml -------------------------------------------------------------------------------- /.github/workflows/website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/.github/workflows/website.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/clean.R -------------------------------------------------------------------------------- /R/currency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/currency.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/data.R -------------------------------------------------------------------------------- /R/format_datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/format_datetime.R -------------------------------------------------------------------------------- /R/format_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/format_names.R -------------------------------------------------------------------------------- /R/format_p_value.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/format_p_value.R -------------------------------------------------------------------------------- /R/freq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/freq.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/na_replace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/na_replace.R -------------------------------------------------------------------------------- /R/percentage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/percentage.R -------------------------------------------------------------------------------- /R/rdate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/rdate.R -------------------------------------------------------------------------------- /R/regex_true_false.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/regex_true_false.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/unclean.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/data/unclean.rda -------------------------------------------------------------------------------- /data_raw/unclean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/data_raw/unclean.R -------------------------------------------------------------------------------- /inst/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/inst/symbols.txt -------------------------------------------------------------------------------- /man/clean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/clean.Rd -------------------------------------------------------------------------------- /man/currency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/currency.Rd -------------------------------------------------------------------------------- /man/format_datetime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/format_datetime.Rd -------------------------------------------------------------------------------- /man/format_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/format_names.Rd -------------------------------------------------------------------------------- /man/format_p_value.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/format_p_value.Rd -------------------------------------------------------------------------------- /man/freq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/freq.Rd -------------------------------------------------------------------------------- /man/na_replace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/na_replace.Rd -------------------------------------------------------------------------------- /man/percentage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/percentage.Rd -------------------------------------------------------------------------------- /man/rdate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/rdate.Rd -------------------------------------------------------------------------------- /man/regex_true_false.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/regex_true_false.Rd -------------------------------------------------------------------------------- /man/unclean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/man/unclean.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/tests/testthat/test-clean.R -------------------------------------------------------------------------------- /tests/testthat/test-currency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/tests/testthat/test-currency.R -------------------------------------------------------------------------------- /tests/testthat/test-freq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/tests/testthat/test-freq.R -------------------------------------------------------------------------------- /tests/testthat/test-percentage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/tests/testthat/test-percentage.R -------------------------------------------------------------------------------- /tests/testthat/test-rdate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msberends/cleaner/HEAD/tests/testthat/test-rdate.R --------------------------------------------------------------------------------