├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── coalesce.R ├── columns.R ├── cube.R ├── dcast.R ├── dt_utils.R ├── join.R ├── let.R ├── let_all.R ├── maditr-package.R ├── on_attach.R ├── query.R ├── text_expand.R ├── to_list.R ├── to_wide.R ├── utils.R ├── verbs.R └── vlookup.R ├── README.MD ├── codecov.yml ├── inst └── tinytest │ ├── test_coalesce.R │ ├── test_columns.R │ ├── test_cube.R │ ├── test_dcast_melt.R │ ├── test_dplyr_verbs.R │ ├── test_join.R │ ├── test_let_all.R │ ├── test_selectors.R │ ├── test_take_all.R │ ├── test_text_expand.R │ ├── test_to_list.R │ ├── test_to_wide.R │ ├── test_utils.R │ ├── test_verbs.R │ └── test_vlookup.R ├── maditr.Rproj ├── man ├── coalesce.Rd ├── columns.Rd ├── copy.Rd ├── dcast.Rd ├── dt_count.Rd ├── dt_left_join.Rd ├── dt_mutate.Rd ├── let_if.Rd ├── maditr-package.Rd ├── query_if.Rd ├── reexports.Rd ├── text_expand.Rd ├── to_list.Rd ├── to_long.Rd └── vlookup.Rd ├── tests └── tinytest.R └── vignettes ├── Introduction.R ├── Introduction.Rmd └── Introduction.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/NEWS -------------------------------------------------------------------------------- /R/coalesce.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/coalesce.R -------------------------------------------------------------------------------- /R/columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/columns.R -------------------------------------------------------------------------------- /R/cube.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/cube.R -------------------------------------------------------------------------------- /R/dcast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/dcast.R -------------------------------------------------------------------------------- /R/dt_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/dt_utils.R -------------------------------------------------------------------------------- /R/join.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/join.R -------------------------------------------------------------------------------- /R/let.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/let.R -------------------------------------------------------------------------------- /R/let_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/let_all.R -------------------------------------------------------------------------------- /R/maditr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/maditr-package.R -------------------------------------------------------------------------------- /R/on_attach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/on_attach.R -------------------------------------------------------------------------------- /R/query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/query.R -------------------------------------------------------------------------------- /R/text_expand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/text_expand.R -------------------------------------------------------------------------------- /R/to_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/to_list.R -------------------------------------------------------------------------------- /R/to_wide.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/to_wide.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/verbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/verbs.R -------------------------------------------------------------------------------- /R/vlookup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/R/vlookup.R -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/README.MD -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/codecov.yml -------------------------------------------------------------------------------- /inst/tinytest/test_coalesce.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_coalesce.R -------------------------------------------------------------------------------- /inst/tinytest/test_columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_columns.R -------------------------------------------------------------------------------- /inst/tinytest/test_cube.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_cube.R -------------------------------------------------------------------------------- /inst/tinytest/test_dcast_melt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_dcast_melt.R -------------------------------------------------------------------------------- /inst/tinytest/test_dplyr_verbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_dplyr_verbs.R -------------------------------------------------------------------------------- /inst/tinytest/test_join.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_join.R -------------------------------------------------------------------------------- /inst/tinytest/test_let_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_let_all.R -------------------------------------------------------------------------------- /inst/tinytest/test_selectors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_selectors.R -------------------------------------------------------------------------------- /inst/tinytest/test_take_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_take_all.R -------------------------------------------------------------------------------- /inst/tinytest/test_text_expand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_text_expand.R -------------------------------------------------------------------------------- /inst/tinytest/test_to_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_to_list.R -------------------------------------------------------------------------------- /inst/tinytest/test_to_wide.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_to_wide.R -------------------------------------------------------------------------------- /inst/tinytest/test_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_utils.R -------------------------------------------------------------------------------- /inst/tinytest/test_verbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_verbs.R -------------------------------------------------------------------------------- /inst/tinytest/test_vlookup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/inst/tinytest/test_vlookup.R -------------------------------------------------------------------------------- /maditr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/maditr.Rproj -------------------------------------------------------------------------------- /man/coalesce.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/coalesce.Rd -------------------------------------------------------------------------------- /man/columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/columns.Rd -------------------------------------------------------------------------------- /man/copy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/copy.Rd -------------------------------------------------------------------------------- /man/dcast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/dcast.Rd -------------------------------------------------------------------------------- /man/dt_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/dt_count.Rd -------------------------------------------------------------------------------- /man/dt_left_join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/dt_left_join.Rd -------------------------------------------------------------------------------- /man/dt_mutate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/dt_mutate.Rd -------------------------------------------------------------------------------- /man/let_if.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/let_if.Rd -------------------------------------------------------------------------------- /man/maditr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/maditr-package.Rd -------------------------------------------------------------------------------- /man/query_if.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/query_if.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/text_expand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/text_expand.Rd -------------------------------------------------------------------------------- /man/to_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/to_list.Rd -------------------------------------------------------------------------------- /man/to_long.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/to_long.Rd -------------------------------------------------------------------------------- /man/vlookup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/man/vlookup.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /vignettes/Introduction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/vignettes/Introduction.R -------------------------------------------------------------------------------- /vignettes/Introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/vignettes/Introduction.Rmd -------------------------------------------------------------------------------- /vignettes/Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdemin/maditr/HEAD/vignettes/Introduction.html --------------------------------------------------------------------------------