├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── check-standard.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── compat.R ├── join.R ├── query.R ├── quote.R ├── remove.R ├── replace.R ├── show_dplyr.R └── unscope.R ├── README.Rmd ├── README.md ├── codecov.yml ├── man ├── figures │ └── logo.png ├── query.Rd └── show_dplyr.Rd ├── tests ├── testthat.R └── testthat │ ├── setup-load_data.R │ ├── test-aggregate.R │ ├── test-aliases.R │ ├── test-arrow-dataset.R │ ├── test-arrow-recordbatch.R │ ├── test-arrow-table.R │ ├── test-conditional.R │ ├── test-dbplyr.R │ ├── test-dtplyr.R │ ├── test-environments.R │ ├── test-errors.R │ ├── test-examples.R │ ├── test-handling_nulls.R │ ├── test-having.R │ ├── test-in_and_between.R │ ├── test-joins.R │ ├── test-limit.R │ ├── test-order_by.R │ ├── test-select_distinct.R │ ├── test-select_simple.R │ ├── test-select_where.R │ └── test-show_dplyr.R └── tidyquery.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/compat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/compat.R -------------------------------------------------------------------------------- /R/join.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/join.R -------------------------------------------------------------------------------- /R/query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/query.R -------------------------------------------------------------------------------- /R/quote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/quote.R -------------------------------------------------------------------------------- /R/remove.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/remove.R -------------------------------------------------------------------------------- /R/replace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/replace.R -------------------------------------------------------------------------------- /R/show_dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/show_dplyr.R -------------------------------------------------------------------------------- /R/unscope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/R/unscope.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/codecov.yml -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/query.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/man/query.Rd -------------------------------------------------------------------------------- /man/show_dplyr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/man/show_dplyr.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/setup-load_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/setup-load_data.R -------------------------------------------------------------------------------- /tests/testthat/test-aggregate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-aggregate.R -------------------------------------------------------------------------------- /tests/testthat/test-aliases.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-aliases.R -------------------------------------------------------------------------------- /tests/testthat/test-arrow-dataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-arrow-dataset.R -------------------------------------------------------------------------------- /tests/testthat/test-arrow-recordbatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-arrow-recordbatch.R -------------------------------------------------------------------------------- /tests/testthat/test-arrow-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-arrow-table.R -------------------------------------------------------------------------------- /tests/testthat/test-conditional.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-conditional.R -------------------------------------------------------------------------------- /tests/testthat/test-dbplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-dbplyr.R -------------------------------------------------------------------------------- /tests/testthat/test-dtplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-dtplyr.R -------------------------------------------------------------------------------- /tests/testthat/test-environments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-environments.R -------------------------------------------------------------------------------- /tests/testthat/test-errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-errors.R -------------------------------------------------------------------------------- /tests/testthat/test-examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-examples.R -------------------------------------------------------------------------------- /tests/testthat/test-handling_nulls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-handling_nulls.R -------------------------------------------------------------------------------- /tests/testthat/test-having.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-having.R -------------------------------------------------------------------------------- /tests/testthat/test-in_and_between.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-in_and_between.R -------------------------------------------------------------------------------- /tests/testthat/test-joins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-joins.R -------------------------------------------------------------------------------- /tests/testthat/test-limit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-limit.R -------------------------------------------------------------------------------- /tests/testthat/test-order_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-order_by.R -------------------------------------------------------------------------------- /tests/testthat/test-select_distinct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-select_distinct.R -------------------------------------------------------------------------------- /tests/testthat/test-select_simple.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-select_simple.R -------------------------------------------------------------------------------- /tests/testthat/test-select_where.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-select_where.R -------------------------------------------------------------------------------- /tests/testthat/test-show_dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tests/testthat/test-show_dplyr.R -------------------------------------------------------------------------------- /tidyquery.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcook/tidyquery/HEAD/tidyquery.Rproj --------------------------------------------------------------------------------