├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.Rmd ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md └── workflows │ ├── R-CMD-check.yml │ ├── check-link-rot.yml │ ├── check-spelling.yml │ ├── covr.yml │ ├── format.yml │ ├── lint.yml │ └── pkgdown.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── arrange.R ├── bind.R ├── collect.R ├── complete.R ├── count.R ├── describe.R ├── distinct.R ├── drop_na.R ├── explain.R ├── fetch.R ├── fill.R ├── filter.R ├── funs-conversion.R ├── funs-date.R ├── funs-default.R ├── funs-string.R ├── global_options.R ├── groups.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── join.R ├── make_unique_id.R ├── mutate.R ├── pivot_longer.R ├── pivot_wider.R ├── plan.R ├── print.R ├── pull.R ├── read_scan.R ├── reexports.R ├── relocate.R ├── rename.R ├── replace_na.R ├── rowwise.R ├── select.R ├── separate.R ├── sink.R ├── slice.R ├── summarize.R ├── summary.R ├── tidypolars-package.R ├── uncount.R ├── unite.R ├── utils-across.R ├── utils-expr.R ├── utils-polars.R ├── utils-tidyselect.R ├── utils.R └── write.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── inst ├── WORDLIST └── flir │ └── rules │ └── describe_plan.yml ├── jarl.toml ├── man ├── arrange.polars_data_frame.Rd ├── bind_cols_polars.Rd ├── bind_rows_polars.Rd ├── complete.polars_data_frame.Rd ├── compute.polars_lazy_frame.Rd ├── count.polars_data_frame.Rd ├── cross_join.polars_data_frame.Rd ├── describe.Rd ├── describe_plan.Rd ├── distinct.polars_data_frame.Rd ├── drop_na.polars_data_frame.Rd ├── explain.polars_lazy_frame.Rd ├── fetch.Rd ├── figures │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.png ├── fill.polars_data_frame.Rd ├── filter.polars_data_frame.Rd ├── from_csv.Rd ├── from_ipc.Rd ├── from_ndjson.Rd ├── from_parquet.Rd ├── group_by.polars_data_frame.Rd ├── group_split.polars_data_frame.Rd ├── group_vars.polars_data_frame.Rd ├── make_unique_id.Rd ├── mutate.polars_data_frame.Rd ├── mutating-joins.Rd ├── partitioned_output.Rd ├── pivot_longer.polars_data_frame.Rd ├── pivot_wider.polars_data_frame.Rd ├── pull.polars_data_frame.Rd ├── reexports.Rd ├── relocate.polars_data_frame.Rd ├── rename.polars_data_frame.Rd ├── replace_na.polars_data_frame.Rd ├── rowwise.polars_data_frame.Rd ├── select.polars_data_frame.Rd ├── semi_join.polars_data_frame.Rd ├── separate.polars_data_frame.Rd ├── sink_csv.Rd ├── sink_ipc.Rd ├── sink_ndjson.Rd ├── sink_parquet.Rd ├── slice_tail.polars_data_frame.Rd ├── summarize.polars_data_frame.Rd ├── summary.polars_data_frame.Rd ├── tidypolars-package.Rd ├── tidypolars_options.Rd ├── uncount.polars_data_frame.Rd ├── unite.polars_data_frame.Rd ├── write_csv_polars.Rd ├── write_ipc_polars.Rd ├── write_json_polars.Rd ├── write_ndjson_polars.Rd └── write_parquet_polars.Rd ├── pkgdown ├── extra.scss └── 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 │ ├── _snaps │ ├── across-lazy.md │ ├── across.md │ ├── arrange-lazy.md │ ├── arrange.md │ ├── bind_cols-lazy.md │ ├── bind_cols.md │ ├── bind_rows-lazy.md │ ├── bind_rows.md │ ├── by-lazy.md │ ├── by.md │ ├── collect.md │ ├── compute.md │ ├── count-lazy.md │ ├── count.md │ ├── describe.md │ ├── drop_na-lazy.md │ ├── drop_na.md │ ├── explicit_namespace-lazy.md │ ├── explicit_namespace.md │ ├── fetch.md │ ├── filter-lazy.md │ ├── filter.md │ ├── funs_conversion-lazy.md │ ├── funs_conversion.md │ ├── funs_date-lazy.md │ ├── funs_date.md │ ├── funs_other-lazy.md │ ├── funs_other.md │ ├── funs_string-lazy.md │ ├── funs_string.md │ ├── global_option-lazy.md │ ├── global_option.md │ ├── group_by-lazy.md │ ├── group_by.md │ ├── ifelse-lazy.md │ ├── ifelse.md │ ├── join_crossing-lazy.md │ ├── join_crossing.md │ ├── join_filtering-lazy.md │ ├── join_filtering.md │ ├── join_inequality-lazy.md │ ├── join_inequality.md │ ├── join_mutating-lazy.md │ ├── join_mutating.md │ ├── make_unique_id-lazy.md │ ├── make_unique_id.md │ ├── mutate-lazy.md │ ├── mutate.md │ ├── non-translated-lazy.md │ ├── non-translated.md │ ├── partitioned_output.md │ ├── pivot_longer-lazy.md │ ├── pivot_longer.md │ ├── pivot_wider.md │ ├── pronouns-lazy.md │ ├── pronouns.md │ ├── pull-lazy.md │ ├── pull.md │ ├── read-write.md │ ├── relocate-lazy.md │ ├── relocate.md │ ├── replace_na-lazy.md │ ├── replace_na.md │ ├── rowwise-lazy.md │ ├── rowwise.md │ ├── select-lazy.md │ ├── select.md │ ├── sink.md │ ├── slice.md │ ├── summarize-lazy.md │ ├── summarize.md │ ├── summary.md │ ├── unite-lazy.md │ ├── unite.md │ ├── utils_expr-lazy.md │ ├── utils_expr.md │ └── write.md │ ├── helper.R │ ├── setup.R │ ├── test-across-lazy.R │ ├── test-across.R │ ├── test-arrange-lazy.R │ ├── test-arrange.R │ ├── test-as_tibble-lazy.R │ ├── test-as_tibble.R │ ├── test-bind_cols-lazy.R │ ├── test-bind_cols.R │ ├── test-bind_rows-lazy.R │ ├── test-bind_rows.R │ ├── test-by-lazy.R │ ├── test-by.R │ ├── test-case_match-lazy.R │ ├── test-case_match.R │ ├── test-case_when-lazy.R │ ├── test-case_when.R │ ├── test-coalesce-lazy.R │ ├── test-coalesce.R │ ├── test-collect.R │ ├── test-complete-lazy.R │ ├── test-complete.R │ ├── test-compute.R │ ├── test-count-lazy.R │ ├── test-count.R │ ├── test-describe.R │ ├── test-distinct-lazy.R │ ├── test-distinct.R │ ├── test-drop_na-lazy.R │ ├── test-drop_na.R │ ├── test-explicit_namespace-lazy.R │ ├── test-explicit_namespace.R │ ├── test-fetch.R │ ├── test-fill-lazy.R │ ├── test-fill.R │ ├── test-filter-lazy.R │ ├── test-filter.R │ ├── test-funs-date-lazy.R │ ├── test-funs-date.R │ ├── test-funs-string-lazy.R │ ├── test-funs-string.R │ ├── test-funs_conversion-lazy.R │ ├── test-funs_conversion.R │ ├── test-funs_date-lazy.R │ ├── test-funs_date.R │ ├── test-funs_math-lazy.R │ ├── test-funs_math.R │ ├── test-funs_other-lazy.R │ ├── test-funs_other.R │ ├── test-funs_string-lazy.R │ ├── test-funs_string.R │ ├── test-global_option-lazy.R │ ├── test-global_option.R │ ├── test-group_by-lazy.R │ ├── test-group_by.R │ ├── test-group_metadata-lazy.R │ ├── test-group_metadata.R │ ├── test-group_split.R │ ├── test-ifelse-lazy.R │ ├── test-ifelse.R │ ├── test-indirection-lazy.R │ ├── test-indirection.R │ ├── test-join_crossing-lazy.R │ ├── test-join_crossing.R │ ├── test-join_filtering-lazy.R │ ├── test-join_filtering.R │ ├── test-join_inequality-lazy.R │ ├── test-join_inequality.R │ ├── test-join_mutating-lazy.R │ ├── test-join_mutating.R │ ├── test-magrittr-pipe-lazy.R │ ├── test-magrittr-pipe.R │ ├── test-make_unique_id-lazy.R │ ├── test-make_unique_id.R │ ├── test-mutate-lazy.R │ ├── test-mutate.R │ ├── test-n-lazy.R │ ├── test-n.R │ ├── test-non-translated-lazy.R │ ├── test-non-translated.R │ ├── test-partitioned_output.R │ ├── test-pivot_longer-lazy.R │ ├── test-pivot_longer.R │ ├── test-pivot_wider.R │ ├── test-pronouns-lazy.R │ ├── test-pronouns.R │ ├── test-pull-lazy.R │ ├── test-pull.R │ ├── test-read-write.R │ ├── test-relocate-lazy.R │ ├── test-relocate.R │ ├── test-rename-lazy.R │ ├── test-rename.R │ ├── test-replace_na-lazy.R │ ├── test-replace_na.R │ ├── test-rowwise-lazy.R │ ├── test-rowwise.R │ ├── test-select-lazy.R │ ├── test-select.R │ ├── test-separate-lazy.R │ ├── test-separate.R │ ├── test-sink.R │ ├── test-slice-lazy.R │ ├── test-slice.R │ ├── test-summarize-lazy.R │ ├── test-summarize.R │ ├── test-summary.R │ ├── test-tally-lazy.R │ ├── test-tally.R │ ├── test-uncount-lazy.R │ ├── test-uncount.R │ ├── test-ungroup-lazy.R │ ├── test-ungroup.R │ ├── test-unite-lazy.R │ ├── test-unite.R │ ├── test-utils_expr-lazy.R │ ├── test-utils_expr.R │ └── test-write.R ├── tidypolars.Rproj └── vignettes ├── .gitignore ├── how-to-benchmark.Rmd ├── r-and-polars-expressions.Rmd ├── tidypolars.Rmd └── who.csv /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | 3 | /.quarto/ 4 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/CONTRIBUTING.Rmd -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/R-CMD-check.yml -------------------------------------------------------------------------------- /.github/workflows/check-link-rot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/check-link-rot.yml -------------------------------------------------------------------------------- /.github/workflows/check-spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/check-spelling.yml -------------------------------------------------------------------------------- /.github/workflows/covr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/covr.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.github/workflows/pkgdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: tidypolars authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/arrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/arrange.R -------------------------------------------------------------------------------- /R/bind.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/bind.R -------------------------------------------------------------------------------- /R/collect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/collect.R -------------------------------------------------------------------------------- /R/complete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/complete.R -------------------------------------------------------------------------------- /R/count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/count.R -------------------------------------------------------------------------------- /R/describe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/describe.R -------------------------------------------------------------------------------- /R/distinct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/distinct.R -------------------------------------------------------------------------------- /R/drop_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/drop_na.R -------------------------------------------------------------------------------- /R/explain.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/explain.R -------------------------------------------------------------------------------- /R/fetch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/fetch.R -------------------------------------------------------------------------------- /R/fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/fill.R -------------------------------------------------------------------------------- /R/filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/filter.R -------------------------------------------------------------------------------- /R/funs-conversion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/funs-conversion.R -------------------------------------------------------------------------------- /R/funs-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/funs-date.R -------------------------------------------------------------------------------- /R/funs-default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/funs-default.R -------------------------------------------------------------------------------- /R/funs-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/funs-string.R -------------------------------------------------------------------------------- /R/global_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/global_options.R -------------------------------------------------------------------------------- /R/groups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/groups.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/join.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/join.R -------------------------------------------------------------------------------- /R/make_unique_id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/make_unique_id.R -------------------------------------------------------------------------------- /R/mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/mutate.R -------------------------------------------------------------------------------- /R/pivot_longer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/pivot_longer.R -------------------------------------------------------------------------------- /R/pivot_wider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/pivot_wider.R -------------------------------------------------------------------------------- /R/plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/plan.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/print.R -------------------------------------------------------------------------------- /R/pull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/pull.R -------------------------------------------------------------------------------- /R/read_scan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/read_scan.R -------------------------------------------------------------------------------- /R/reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/reexports.R -------------------------------------------------------------------------------- /R/relocate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/relocate.R -------------------------------------------------------------------------------- /R/rename.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/rename.R -------------------------------------------------------------------------------- /R/replace_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/replace_na.R -------------------------------------------------------------------------------- /R/rowwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/rowwise.R -------------------------------------------------------------------------------- /R/select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/select.R -------------------------------------------------------------------------------- /R/separate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/separate.R -------------------------------------------------------------------------------- /R/sink.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/sink.R -------------------------------------------------------------------------------- /R/slice.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/slice.R -------------------------------------------------------------------------------- /R/summarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/summarize.R -------------------------------------------------------------------------------- /R/summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/summary.R -------------------------------------------------------------------------------- /R/tidypolars-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/tidypolars-package.R -------------------------------------------------------------------------------- /R/uncount.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/uncount.R -------------------------------------------------------------------------------- /R/unite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/unite.R -------------------------------------------------------------------------------- /R/utils-across.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/utils-across.R -------------------------------------------------------------------------------- /R/utils-expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/utils-expr.R -------------------------------------------------------------------------------- /R/utils-polars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/utils-polars.R -------------------------------------------------------------------------------- /R/utils-tidyselect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/utils-tidyselect.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/R/write.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/codecov.yml -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/flir/rules/describe_plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/inst/flir/rules/describe_plan.yml -------------------------------------------------------------------------------- /jarl.toml: -------------------------------------------------------------------------------- 1 | [lint] 2 | extend-select = ["TESTTHAT"] 3 | -------------------------------------------------------------------------------- /man/arrange.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/arrange.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/bind_cols_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/bind_cols_polars.Rd -------------------------------------------------------------------------------- /man/bind_rows_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/bind_rows_polars.Rd -------------------------------------------------------------------------------- /man/complete.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/complete.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/compute.polars_lazy_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/compute.polars_lazy_frame.Rd -------------------------------------------------------------------------------- /man/count.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/count.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/cross_join.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/cross_join.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/describe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/describe.Rd -------------------------------------------------------------------------------- /man/describe_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/describe_plan.Rd -------------------------------------------------------------------------------- /man/distinct.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/distinct.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/drop_na.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/drop_na.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/explain.polars_lazy_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/explain.polars_lazy_frame.Rd -------------------------------------------------------------------------------- /man/fetch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/fetch.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/fill.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/fill.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/filter.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/filter.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/from_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/from_csv.Rd -------------------------------------------------------------------------------- /man/from_ipc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/from_ipc.Rd -------------------------------------------------------------------------------- /man/from_ndjson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/from_ndjson.Rd -------------------------------------------------------------------------------- /man/from_parquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/from_parquet.Rd -------------------------------------------------------------------------------- /man/group_by.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/group_by.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/group_split.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/group_split.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/group_vars.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/group_vars.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/make_unique_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/make_unique_id.Rd -------------------------------------------------------------------------------- /man/mutate.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/mutate.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/mutating-joins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/mutating-joins.Rd -------------------------------------------------------------------------------- /man/partitioned_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/partitioned_output.Rd -------------------------------------------------------------------------------- /man/pivot_longer.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/pivot_longer.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/pivot_wider.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/pivot_wider.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/pull.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/pull.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/relocate.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/relocate.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/rename.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/rename.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/replace_na.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/replace_na.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/rowwise.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/rowwise.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/select.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/select.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/semi_join.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/semi_join.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/separate.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/separate.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/sink_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/sink_csv.Rd -------------------------------------------------------------------------------- /man/sink_ipc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/sink_ipc.Rd -------------------------------------------------------------------------------- /man/sink_ndjson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/sink_ndjson.Rd -------------------------------------------------------------------------------- /man/sink_parquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/sink_parquet.Rd -------------------------------------------------------------------------------- /man/slice_tail.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/slice_tail.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/summarize.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/summarize.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/summary.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/summary.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/tidypolars-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/tidypolars-package.Rd -------------------------------------------------------------------------------- /man/tidypolars_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/tidypolars_options.Rd -------------------------------------------------------------------------------- /man/uncount.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/uncount.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/unite.polars_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/unite.polars_data_frame.Rd -------------------------------------------------------------------------------- /man/write_csv_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/write_csv_polars.Rd -------------------------------------------------------------------------------- /man/write_ipc_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/write_ipc_polars.Rd -------------------------------------------------------------------------------- /man/write_json_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/write_json_polars.Rd -------------------------------------------------------------------------------- /man/write_ndjson_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/write_ndjson_polars.Rd -------------------------------------------------------------------------------- /man/write_parquet_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/man/write_parquet_polars.Rd -------------------------------------------------------------------------------- /pkgdown/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/extra.scss -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/across-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/across-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/across.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/across.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/arrange-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/arrange-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/arrange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/arrange.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/bind_cols-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/bind_cols-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/bind_cols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/bind_cols.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/bind_rows-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/bind_rows-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/bind_rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/bind_rows.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/by-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/by-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/by.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/collect.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/compute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/compute.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/count-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/count-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/count.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/describe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/describe.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/drop_na-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/drop_na-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/drop_na.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/drop_na.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/explicit_namespace-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/explicit_namespace-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/explicit_namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/explicit_namespace.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/fetch.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/filter-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/filter-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/filter.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_conversion-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_conversion-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_conversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_conversion.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_date-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_date-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_date.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_other-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_other-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_other.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_string-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_string-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/funs_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/funs_string.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/global_option-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/global_option-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/global_option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/global_option.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/group_by-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/group_by-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/group_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/group_by.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ifelse-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/ifelse-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ifelse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/ifelse.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_crossing-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_crossing-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_crossing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_crossing.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_filtering-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_filtering-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_filtering.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_inequality-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_inequality-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_inequality.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_mutating-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_mutating-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/join_mutating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/join_mutating.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/make_unique_id-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/make_unique_id-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/make_unique_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/make_unique_id.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mutate-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/mutate-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mutate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/mutate.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/non-translated-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/non-translated-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/non-translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/non-translated.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/partitioned_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/partitioned_output.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pivot_longer-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pivot_longer-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pivot_longer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pivot_longer.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pivot_wider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pivot_wider.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pronouns-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pronouns-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pronouns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pronouns.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pull-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pull-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/pull.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/read-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/read-write.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/relocate-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/relocate-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/relocate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/relocate.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/replace_na-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/replace_na-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/replace_na.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/replace_na.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rowwise-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/rowwise-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rowwise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/rowwise.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/select-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/select-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/select.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/sink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/sink.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/slice.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/summarize-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/summarize-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/summarize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/summarize.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/summary.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/unite-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/unite-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/unite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/unite.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils_expr-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/utils_expr-lazy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils_expr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/utils_expr.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/_snaps/write.md -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-across-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-across-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-across.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-across.R -------------------------------------------------------------------------------- /tests/testthat/test-arrange-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-arrange-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-arrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-arrange.R -------------------------------------------------------------------------------- /tests/testthat/test-as_tibble-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-as_tibble-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-as_tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-as_tibble.R -------------------------------------------------------------------------------- /tests/testthat/test-bind_cols-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-bind_cols-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-bind_cols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-bind_cols.R -------------------------------------------------------------------------------- /tests/testthat/test-bind_rows-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-bind_rows-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-bind_rows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-bind_rows.R -------------------------------------------------------------------------------- /tests/testthat/test-by-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-by-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-by.R -------------------------------------------------------------------------------- /tests/testthat/test-case_match-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-case_match-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-case_match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-case_match.R -------------------------------------------------------------------------------- /tests/testthat/test-case_when-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-case_when-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-case_when.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-case_when.R -------------------------------------------------------------------------------- /tests/testthat/test-coalesce-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-coalesce-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-coalesce.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-coalesce.R -------------------------------------------------------------------------------- /tests/testthat/test-collect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-collect.R -------------------------------------------------------------------------------- /tests/testthat/test-complete-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-complete-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-complete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-complete.R -------------------------------------------------------------------------------- /tests/testthat/test-compute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-compute.R -------------------------------------------------------------------------------- /tests/testthat/test-count-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-count-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-count.R -------------------------------------------------------------------------------- /tests/testthat/test-describe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-describe.R -------------------------------------------------------------------------------- /tests/testthat/test-distinct-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-distinct-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-distinct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-distinct.R -------------------------------------------------------------------------------- /tests/testthat/test-drop_na-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-drop_na-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-drop_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-drop_na.R -------------------------------------------------------------------------------- /tests/testthat/test-explicit_namespace-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-explicit_namespace-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-explicit_namespace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-explicit_namespace.R -------------------------------------------------------------------------------- /tests/testthat/test-fetch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-fetch.R -------------------------------------------------------------------------------- /tests/testthat/test-fill-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-fill-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-fill.R -------------------------------------------------------------------------------- /tests/testthat/test-filter-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-filter-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-filter.R -------------------------------------------------------------------------------- /tests/testthat/test-funs-date-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs-date-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs-date.R -------------------------------------------------------------------------------- /tests/testthat/test-funs-string-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs-string-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs-string.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_conversion-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_conversion-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_conversion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_conversion.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_date-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_date-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_date.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_math-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_math-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_math.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_math.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_other-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_other-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_other.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_other.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_string-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_string-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-funs_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-funs_string.R -------------------------------------------------------------------------------- /tests/testthat/test-global_option-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-global_option-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-global_option.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-global_option.R -------------------------------------------------------------------------------- /tests/testthat/test-group_by-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-group_by-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-group_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-group_by.R -------------------------------------------------------------------------------- /tests/testthat/test-group_metadata-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-group_metadata-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-group_metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-group_metadata.R -------------------------------------------------------------------------------- /tests/testthat/test-group_split.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-group_split.R -------------------------------------------------------------------------------- /tests/testthat/test-ifelse-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-ifelse-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-ifelse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-ifelse.R -------------------------------------------------------------------------------- /tests/testthat/test-indirection-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-indirection-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-indirection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-indirection.R -------------------------------------------------------------------------------- /tests/testthat/test-join_crossing-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_crossing-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-join_crossing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_crossing.R -------------------------------------------------------------------------------- /tests/testthat/test-join_filtering-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_filtering-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-join_filtering.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_filtering.R -------------------------------------------------------------------------------- /tests/testthat/test-join_inequality-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_inequality-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-join_inequality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_inequality.R -------------------------------------------------------------------------------- /tests/testthat/test-join_mutating-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_mutating-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-join_mutating.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-join_mutating.R -------------------------------------------------------------------------------- /tests/testthat/test-magrittr-pipe-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-magrittr-pipe-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-magrittr-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-magrittr-pipe.R -------------------------------------------------------------------------------- /tests/testthat/test-make_unique_id-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-make_unique_id-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-make_unique_id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-make_unique_id.R -------------------------------------------------------------------------------- /tests/testthat/test-mutate-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-mutate-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-mutate.R -------------------------------------------------------------------------------- /tests/testthat/test-n-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-n-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-n.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-n.R -------------------------------------------------------------------------------- /tests/testthat/test-non-translated-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-non-translated-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-non-translated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-non-translated.R -------------------------------------------------------------------------------- /tests/testthat/test-partitioned_output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-partitioned_output.R -------------------------------------------------------------------------------- /tests/testthat/test-pivot_longer-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pivot_longer-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-pivot_longer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pivot_longer.R -------------------------------------------------------------------------------- /tests/testthat/test-pivot_wider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pivot_wider.R -------------------------------------------------------------------------------- /tests/testthat/test-pronouns-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pronouns-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-pronouns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pronouns.R -------------------------------------------------------------------------------- /tests/testthat/test-pull-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pull-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-pull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-pull.R -------------------------------------------------------------------------------- /tests/testthat/test-read-write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-read-write.R -------------------------------------------------------------------------------- /tests/testthat/test-relocate-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-relocate-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-relocate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-relocate.R -------------------------------------------------------------------------------- /tests/testthat/test-rename-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-rename-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-rename.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-rename.R -------------------------------------------------------------------------------- /tests/testthat/test-replace_na-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-replace_na-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-replace_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-replace_na.R -------------------------------------------------------------------------------- /tests/testthat/test-rowwise-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-rowwise-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-rowwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-rowwise.R -------------------------------------------------------------------------------- /tests/testthat/test-select-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-select-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-select.R -------------------------------------------------------------------------------- /tests/testthat/test-separate-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-separate-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-separate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-separate.R -------------------------------------------------------------------------------- /tests/testthat/test-sink.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-sink.R -------------------------------------------------------------------------------- /tests/testthat/test-slice-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-slice-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-slice.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-slice.R -------------------------------------------------------------------------------- /tests/testthat/test-summarize-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-summarize-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-summarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-summarize.R -------------------------------------------------------------------------------- /tests/testthat/test-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-summary.R -------------------------------------------------------------------------------- /tests/testthat/test-tally-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-tally-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-tally.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-tally.R -------------------------------------------------------------------------------- /tests/testthat/test-uncount-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-uncount-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-uncount.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-uncount.R -------------------------------------------------------------------------------- /tests/testthat/test-ungroup-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-ungroup-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-ungroup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-ungroup.R -------------------------------------------------------------------------------- /tests/testthat/test-unite-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-unite-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-unite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-unite.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_expr-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-utils_expr-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-utils_expr.R -------------------------------------------------------------------------------- /tests/testthat/test-write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tests/testthat/test-write.R -------------------------------------------------------------------------------- /tidypolars.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/tidypolars.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/how-to-benchmark.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/vignettes/how-to-benchmark.Rmd -------------------------------------------------------------------------------- /vignettes/r-and-polars-expressions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/vignettes/r-and-polars-expressions.Rmd -------------------------------------------------------------------------------- /vignettes/tidypolars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/vignettes/tidypolars.Rmd -------------------------------------------------------------------------------- /vignettes/who.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etiennebacher/tidypolars/HEAD/vignettes/who.csv --------------------------------------------------------------------------------