├── .Rbuildignore ├── .github ├── DISCUSSION_TEMPLATE │ ├── general.yaml │ ├── help.yaml │ ├── ideas.yaml │ └── show-and-tell.yaml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── feature.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── air.yaml │ ├── check.yaml │ └── cover.yaml ├── .gitignore ├── .lintr ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── class_counter.R ├── class_step.R ├── tar_age.R ├── tar_assign.R ├── tar_change.R ├── tar_combine.R ├── tar_combine_raw.R ├── tar_cue_age.R ├── tar_cue_age_raw.R ├── tar_cue_force.R ├── tar_cue_skip.R ├── tar_download.R ├── tar_eval.R ├── tar_eval_raw.R ├── tar_file_read.R ├── tar_files.R ├── tar_files_input.R ├── tar_files_input_raw.R ├── tar_files_raw.R ├── tar_force.R ├── tar_format_nanoparquet.R ├── tar_formats.R ├── tar_group_by.R ├── tar_group_count.R ├── tar_group_select.R ├── tar_group_size.R ├── tar_hook_before.R ├── tar_hook_before_raw.R ├── tar_hook_inner.R ├── tar_hook_inner_raw.R ├── tar_hook_outer.R ├── tar_hook_outer_raw.R ├── tar_knit.R ├── tar_knit_raw.R ├── tar_knitr_deps.R ├── tar_knitr_deps_expr.R ├── tar_map.R ├── tar_map2.R ├── tar_map2_count.R ├── tar_map2_count_raw.R ├── tar_map2_raw.R ├── tar_map2_size.R ├── tar_map2_size_raw.R ├── tar_map_rep.R ├── tar_map_rep_raw.R ├── tar_package.R ├── tar_plan.R ├── tar_quarto.R ├── tar_quarto_files.R ├── tar_quarto_raw.R ├── tar_quarto_rep.R ├── tar_quarto_rep_raw.R ├── tar_render.R ├── tar_render_raw.R ├── tar_render_rep.R ├── tar_render_rep_raw.R ├── tar_rep.R ├── tar_rep2.R ├── tar_rep2_raw.R ├── tar_rep_index.R ├── tar_rep_map.R ├── tar_rep_map_raw.R ├── tar_rep_raw.R ├── tar_select_names.R ├── tar_select_targets.R ├── tar_skip.R ├── tar_sub.R ├── tar_sub_raw.R ├── tar_tangle.R ├── tar_tidyselect.R ├── utils_assert.R ├── utils_ast.R ├── utils_batch.R ├── utils_functional.R ├── utils_hash.R ├── utils_knitr.R ├── utils_language.R ├── utils_logic.R ├── utils_parallel.R ├── utils_targets.R └── utils_tidyselect.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codemeta.json ├── inst ├── CITATION ├── WORDLIST ├── example_rmd.Rmd └── example_tar_tangle.qmd ├── man ├── counter_init.Rd ├── counter_set_names.Rd ├── figures │ ├── logo-font.svg │ ├── logo-hexbin.png │ ├── logo.png │ └── logo.svg ├── reexports.Rd ├── tar_age.Rd ├── tar_append_static_values.Rd ├── tar_assign.Rd ├── tar_change.Rd ├── tar_combine.Rd ├── tar_cue_age.Rd ├── tar_cue_force.Rd ├── tar_cue_skip.Rd ├── tar_download.Rd ├── tar_download_run.Rd ├── tar_eval.Rd ├── tar_file_read.Rd ├── tar_files.Rd ├── tar_files_input.Rd ├── tar_force.Rd ├── tar_force_change.Rd ├── tar_format_nanoparquet.Rd ├── tar_formats.Rd ├── tar_formats_superseded.Rd ├── tar_group_by.Rd ├── tar_group_by_run.Rd ├── tar_group_count.Rd ├── tar_group_count_index.Rd ├── tar_group_count_run.Rd ├── tar_group_select.Rd ├── tar_group_select_run.Rd ├── tar_group_size.Rd ├── tar_group_size_index.Rd ├── tar_group_size_run.Rd ├── tar_hook_before.Rd ├── tar_hook_inner.Rd ├── tar_hook_outer.Rd ├── tar_knit.Rd ├── tar_knit_run.Rd ├── tar_knitr_deps.Rd ├── tar_knitr_deps_expr.Rd ├── tar_map.Rd ├── tar_map2.Rd ├── tar_map2_count.Rd ├── tar_map2_group.Rd ├── tar_map2_run.Rd ├── tar_map2_run_rep.Rd ├── tar_map2_size.Rd ├── tar_map_rep.Rd ├── tar_nanoparquet_convert.Rd ├── tar_nanoparquet_read.Rd ├── tar_nanoparquet_write.Rd ├── tar_plan.Rd ├── tar_quarto.Rd ├── tar_quarto_files.Rd ├── tar_quarto_files_get_source_files.Rd ├── tar_quarto_rep.Rd ├── tar_quarto_rep_rep.Rd ├── tar_quarto_rep_run.Rd ├── tar_quarto_rep_run_params.Rd ├── tar_quarto_run.Rd ├── tar_render.Rd ├── tar_render_rep.Rd ├── tar_render_rep_rep.Rd ├── tar_render_rep_run.Rd ├── tar_render_rep_run_params.Rd ├── tar_render_run.Rd ├── tar_rep.Rd ├── tar_rep2.Rd ├── tar_rep2_run.Rd ├── tar_rep2_run_rep.Rd ├── tar_rep_index.Rd ├── tar_rep_map.Rd ├── tar_rep_map_raw.Rd ├── tar_rep_run.Rd ├── tar_rep_run_map_rep.Rd ├── tar_select_names.Rd ├── tar_select_targets.Rd ├── tar_skip.Rd ├── tar_sub.Rd ├── tar_tangle.Rd ├── tarchetypes-package.Rd ├── walk_ast.Rd └── walk_call_knitr.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tarchetypes.Rproj └── tests ├── interactive └── test-tar_download.R ├── testthat.R └── testthat ├── helper-utils.R ├── test-class_counter.R ├── test-class_step.R ├── test-tar_age.R ├── test-tar_assign.R ├── test-tar_change.R ├── test-tar_combine.R ├── test-tar_cue_age.R ├── test-tar_cue_force.R ├── test-tar_cue_skip.R ├── test-tar_download.R ├── test-tar_eval.R ├── test-tar_file_read.R ├── test-tar_files.R ├── test-tar_files_input.R ├── test-tar_force.R ├── test-tar_format_nanoparquet.R ├── test-tar_formats.R ├── test-tar_group_by.R ├── test-tar_group_count.R ├── test-tar_group_select.R ├── test-tar_group_size.R ├── test-tar_hook_before.R ├── test-tar_hook_inner.R ├── test-tar_hook_outer.R ├── test-tar_knit.R ├── test-tar_knit_raw.R ├── test-tar_knitr_deps.R ├── test-tar_knitr_deps_expr.R ├── test-tar_map.R ├── test-tar_map2.R ├── test-tar_map2_count.R ├── test-tar_map2_size.R ├── test-tar_map_rep.R ├── test-tar_nanoparquet.R ├── test-tar_plan.R ├── test-tar_quarto.R ├── test-tar_quarto_files.R ├── test-tar_quarto_rep.R ├── test-tar_render.R ├── test-tar_render_raw.R ├── test-tar_render_rep.R ├── test-tar_rep.R ├── test-tar_rep2.R ├── test-tar_rep_index.R ├── test-tar_rep_map.R ├── test-tar_select_names.R ├── test-tar_select_targets.R ├── test-tar_skip.R ├── test-tar_sub.R ├── test-tar_tangle.R ├── test-utils_assert.R ├── test-utils_ast.R ├── test-utils_functional.R ├── test-utils_knitr.R └── test-utils_logic.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/general.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/DISCUSSION_TEMPLATE/general.yaml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/DISCUSSION_TEMPLATE/help.yaml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/ideas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/DISCUSSION_TEMPLATE/ideas.yaml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/show-and-tell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/DISCUSSION_TEMPLATE/show-and-tell.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/air.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/workflows/air.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/cover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.github/workflows/cover.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/.lintr -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Eli Lilly and Company 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/class_counter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/class_counter.R -------------------------------------------------------------------------------- /R/class_step.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/class_step.R -------------------------------------------------------------------------------- /R/tar_age.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_age.R -------------------------------------------------------------------------------- /R/tar_assign.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_assign.R -------------------------------------------------------------------------------- /R/tar_change.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_change.R -------------------------------------------------------------------------------- /R/tar_combine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_combine.R -------------------------------------------------------------------------------- /R/tar_combine_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_combine_raw.R -------------------------------------------------------------------------------- /R/tar_cue_age.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_cue_age.R -------------------------------------------------------------------------------- /R/tar_cue_age_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_cue_age_raw.R -------------------------------------------------------------------------------- /R/tar_cue_force.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_cue_force.R -------------------------------------------------------------------------------- /R/tar_cue_skip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_cue_skip.R -------------------------------------------------------------------------------- /R/tar_download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_download.R -------------------------------------------------------------------------------- /R/tar_eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_eval.R -------------------------------------------------------------------------------- /R/tar_eval_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_eval_raw.R -------------------------------------------------------------------------------- /R/tar_file_read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_file_read.R -------------------------------------------------------------------------------- /R/tar_files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_files.R -------------------------------------------------------------------------------- /R/tar_files_input.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_files_input.R -------------------------------------------------------------------------------- /R/tar_files_input_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_files_input_raw.R -------------------------------------------------------------------------------- /R/tar_files_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_files_raw.R -------------------------------------------------------------------------------- /R/tar_force.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_force.R -------------------------------------------------------------------------------- /R/tar_format_nanoparquet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_format_nanoparquet.R -------------------------------------------------------------------------------- /R/tar_formats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_formats.R -------------------------------------------------------------------------------- /R/tar_group_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_group_by.R -------------------------------------------------------------------------------- /R/tar_group_count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_group_count.R -------------------------------------------------------------------------------- /R/tar_group_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_group_select.R -------------------------------------------------------------------------------- /R/tar_group_size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_group_size.R -------------------------------------------------------------------------------- /R/tar_hook_before.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_hook_before.R -------------------------------------------------------------------------------- /R/tar_hook_before_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_hook_before_raw.R -------------------------------------------------------------------------------- /R/tar_hook_inner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_hook_inner.R -------------------------------------------------------------------------------- /R/tar_hook_inner_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_hook_inner_raw.R -------------------------------------------------------------------------------- /R/tar_hook_outer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_hook_outer.R -------------------------------------------------------------------------------- /R/tar_hook_outer_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_hook_outer_raw.R -------------------------------------------------------------------------------- /R/tar_knit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_knit.R -------------------------------------------------------------------------------- /R/tar_knit_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_knit_raw.R -------------------------------------------------------------------------------- /R/tar_knitr_deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_knitr_deps.R -------------------------------------------------------------------------------- /R/tar_knitr_deps_expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_knitr_deps_expr.R -------------------------------------------------------------------------------- /R/tar_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map.R -------------------------------------------------------------------------------- /R/tar_map2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map2.R -------------------------------------------------------------------------------- /R/tar_map2_count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map2_count.R -------------------------------------------------------------------------------- /R/tar_map2_count_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map2_count_raw.R -------------------------------------------------------------------------------- /R/tar_map2_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map2_raw.R -------------------------------------------------------------------------------- /R/tar_map2_size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map2_size.R -------------------------------------------------------------------------------- /R/tar_map2_size_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map2_size_raw.R -------------------------------------------------------------------------------- /R/tar_map_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map_rep.R -------------------------------------------------------------------------------- /R/tar_map_rep_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_map_rep_raw.R -------------------------------------------------------------------------------- /R/tar_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_package.R -------------------------------------------------------------------------------- /R/tar_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_plan.R -------------------------------------------------------------------------------- /R/tar_quarto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_quarto.R -------------------------------------------------------------------------------- /R/tar_quarto_files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_quarto_files.R -------------------------------------------------------------------------------- /R/tar_quarto_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_quarto_raw.R -------------------------------------------------------------------------------- /R/tar_quarto_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_quarto_rep.R -------------------------------------------------------------------------------- /R/tar_quarto_rep_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_quarto_rep_raw.R -------------------------------------------------------------------------------- /R/tar_render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_render.R -------------------------------------------------------------------------------- /R/tar_render_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_render_raw.R -------------------------------------------------------------------------------- /R/tar_render_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_render_rep.R -------------------------------------------------------------------------------- /R/tar_render_rep_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_render_rep_raw.R -------------------------------------------------------------------------------- /R/tar_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep.R -------------------------------------------------------------------------------- /R/tar_rep2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep2.R -------------------------------------------------------------------------------- /R/tar_rep2_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep2_raw.R -------------------------------------------------------------------------------- /R/tar_rep_index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep_index.R -------------------------------------------------------------------------------- /R/tar_rep_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep_map.R -------------------------------------------------------------------------------- /R/tar_rep_map_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep_map_raw.R -------------------------------------------------------------------------------- /R/tar_rep_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_rep_raw.R -------------------------------------------------------------------------------- /R/tar_select_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_select_names.R -------------------------------------------------------------------------------- /R/tar_select_targets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_select_targets.R -------------------------------------------------------------------------------- /R/tar_skip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_skip.R -------------------------------------------------------------------------------- /R/tar_sub.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_sub.R -------------------------------------------------------------------------------- /R/tar_sub_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_sub_raw.R -------------------------------------------------------------------------------- /R/tar_tangle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_tangle.R -------------------------------------------------------------------------------- /R/tar_tidyselect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/tar_tidyselect.R -------------------------------------------------------------------------------- /R/utils_assert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_assert.R -------------------------------------------------------------------------------- /R/utils_ast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_ast.R -------------------------------------------------------------------------------- /R/utils_batch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_batch.R -------------------------------------------------------------------------------- /R/utils_functional.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_functional.R -------------------------------------------------------------------------------- /R/utils_hash.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_hash.R -------------------------------------------------------------------------------- /R/utils_knitr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_knitr.R -------------------------------------------------------------------------------- /R/utils_language.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_language.R -------------------------------------------------------------------------------- /R/utils_logic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_logic.R -------------------------------------------------------------------------------- /R/utils_parallel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_parallel.R -------------------------------------------------------------------------------- /R/utils_targets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_targets.R -------------------------------------------------------------------------------- /R/utils_tidyselect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/R/utils_tidyselect.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/codemeta.json -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/example_rmd.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/inst/example_rmd.Rmd -------------------------------------------------------------------------------- /inst/example_tar_tangle.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/inst/example_tar_tangle.qmd -------------------------------------------------------------------------------- /man/counter_init.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/counter_init.Rd -------------------------------------------------------------------------------- /man/counter_set_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/counter_set_names.Rd -------------------------------------------------------------------------------- /man/figures/logo-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/figures/logo-font.svg -------------------------------------------------------------------------------- /man/figures/logo-hexbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/figures/logo-hexbin.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/tar_age.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_age.Rd -------------------------------------------------------------------------------- /man/tar_append_static_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_append_static_values.Rd -------------------------------------------------------------------------------- /man/tar_assign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_assign.Rd -------------------------------------------------------------------------------- /man/tar_change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_change.Rd -------------------------------------------------------------------------------- /man/tar_combine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_combine.Rd -------------------------------------------------------------------------------- /man/tar_cue_age.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_cue_age.Rd -------------------------------------------------------------------------------- /man/tar_cue_force.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_cue_force.Rd -------------------------------------------------------------------------------- /man/tar_cue_skip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_cue_skip.Rd -------------------------------------------------------------------------------- /man/tar_download.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_download.Rd -------------------------------------------------------------------------------- /man/tar_download_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_download_run.Rd -------------------------------------------------------------------------------- /man/tar_eval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_eval.Rd -------------------------------------------------------------------------------- /man/tar_file_read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_file_read.Rd -------------------------------------------------------------------------------- /man/tar_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_files.Rd -------------------------------------------------------------------------------- /man/tar_files_input.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_files_input.Rd -------------------------------------------------------------------------------- /man/tar_force.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_force.Rd -------------------------------------------------------------------------------- /man/tar_force_change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_force_change.Rd -------------------------------------------------------------------------------- /man/tar_format_nanoparquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_format_nanoparquet.Rd -------------------------------------------------------------------------------- /man/tar_formats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_formats.Rd -------------------------------------------------------------------------------- /man/tar_formats_superseded.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_formats_superseded.Rd -------------------------------------------------------------------------------- /man/tar_group_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_by.Rd -------------------------------------------------------------------------------- /man/tar_group_by_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_by_run.Rd -------------------------------------------------------------------------------- /man/tar_group_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_count.Rd -------------------------------------------------------------------------------- /man/tar_group_count_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_count_index.Rd -------------------------------------------------------------------------------- /man/tar_group_count_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_count_run.Rd -------------------------------------------------------------------------------- /man/tar_group_select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_select.Rd -------------------------------------------------------------------------------- /man/tar_group_select_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_select_run.Rd -------------------------------------------------------------------------------- /man/tar_group_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_size.Rd -------------------------------------------------------------------------------- /man/tar_group_size_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_size_index.Rd -------------------------------------------------------------------------------- /man/tar_group_size_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_group_size_run.Rd -------------------------------------------------------------------------------- /man/tar_hook_before.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_hook_before.Rd -------------------------------------------------------------------------------- /man/tar_hook_inner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_hook_inner.Rd -------------------------------------------------------------------------------- /man/tar_hook_outer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_hook_outer.Rd -------------------------------------------------------------------------------- /man/tar_knit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_knit.Rd -------------------------------------------------------------------------------- /man/tar_knit_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_knit_run.Rd -------------------------------------------------------------------------------- /man/tar_knitr_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_knitr_deps.Rd -------------------------------------------------------------------------------- /man/tar_knitr_deps_expr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_knitr_deps_expr.Rd -------------------------------------------------------------------------------- /man/tar_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map.Rd -------------------------------------------------------------------------------- /man/tar_map2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map2.Rd -------------------------------------------------------------------------------- /man/tar_map2_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map2_count.Rd -------------------------------------------------------------------------------- /man/tar_map2_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map2_group.Rd -------------------------------------------------------------------------------- /man/tar_map2_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map2_run.Rd -------------------------------------------------------------------------------- /man/tar_map2_run_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map2_run_rep.Rd -------------------------------------------------------------------------------- /man/tar_map2_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map2_size.Rd -------------------------------------------------------------------------------- /man/tar_map_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_map_rep.Rd -------------------------------------------------------------------------------- /man/tar_nanoparquet_convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_nanoparquet_convert.Rd -------------------------------------------------------------------------------- /man/tar_nanoparquet_read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_nanoparquet_read.Rd -------------------------------------------------------------------------------- /man/tar_nanoparquet_write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_nanoparquet_write.Rd -------------------------------------------------------------------------------- /man/tar_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_plan.Rd -------------------------------------------------------------------------------- /man/tar_quarto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto.Rd -------------------------------------------------------------------------------- /man/tar_quarto_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_files.Rd -------------------------------------------------------------------------------- /man/tar_quarto_files_get_source_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_files_get_source_files.Rd -------------------------------------------------------------------------------- /man/tar_quarto_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_rep.Rd -------------------------------------------------------------------------------- /man/tar_quarto_rep_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_rep_rep.Rd -------------------------------------------------------------------------------- /man/tar_quarto_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_quarto_rep_run_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_rep_run_params.Rd -------------------------------------------------------------------------------- /man/tar_quarto_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_quarto_run.Rd -------------------------------------------------------------------------------- /man/tar_render.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_render.Rd -------------------------------------------------------------------------------- /man/tar_render_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_render_rep.Rd -------------------------------------------------------------------------------- /man/tar_render_rep_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_render_rep_rep.Rd -------------------------------------------------------------------------------- /man/tar_render_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_render_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_render_rep_run_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_render_rep_run_params.Rd -------------------------------------------------------------------------------- /man/tar_render_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_render_run.Rd -------------------------------------------------------------------------------- /man/tar_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep.Rd -------------------------------------------------------------------------------- /man/tar_rep2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep2.Rd -------------------------------------------------------------------------------- /man/tar_rep2_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep2_run.Rd -------------------------------------------------------------------------------- /man/tar_rep2_run_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep2_run_rep.Rd -------------------------------------------------------------------------------- /man/tar_rep_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep_index.Rd -------------------------------------------------------------------------------- /man/tar_rep_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep_map.Rd -------------------------------------------------------------------------------- /man/tar_rep_map_raw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep_map_raw.Rd -------------------------------------------------------------------------------- /man/tar_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_rep_run_map_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_rep_run_map_rep.Rd -------------------------------------------------------------------------------- /man/tar_select_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_select_names.Rd -------------------------------------------------------------------------------- /man/tar_select_targets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_select_targets.Rd -------------------------------------------------------------------------------- /man/tar_skip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_skip.Rd -------------------------------------------------------------------------------- /man/tar_sub.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_sub.Rd -------------------------------------------------------------------------------- /man/tar_tangle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tar_tangle.Rd -------------------------------------------------------------------------------- /man/tarchetypes-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/tarchetypes-package.Rd -------------------------------------------------------------------------------- /man/walk_ast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/walk_ast.Rd -------------------------------------------------------------------------------- /man/walk_call_knitr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/man/walk_call_knitr.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tarchetypes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tarchetypes.Rproj -------------------------------------------------------------------------------- /tests/interactive/test-tar_download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/interactive/test-tar_download.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/helper-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-class_counter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-class_counter.R -------------------------------------------------------------------------------- /tests/testthat/test-class_step.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-class_step.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_age.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_age.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_assign.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_assign.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_change.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_change.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_combine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_combine.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_cue_age.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_cue_age.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_cue_force.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_cue_force.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_cue_skip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_cue_skip.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_download.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_eval.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_file_read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_file_read.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_files.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_files_input.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_files_input.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_force.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_force.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_format_nanoparquet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_format_nanoparquet.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_formats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_formats.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_group_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_group_by.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_group_count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_group_count.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_group_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_group_select.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_group_size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_group_size.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_hook_before.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_hook_before.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_hook_inner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_hook_inner.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_hook_outer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_hook_outer.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_knit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_knit.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_knit_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_knit_raw.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_knitr_deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_knitr_deps.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_knitr_deps_expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_knitr_deps_expr.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_map.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_map2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_map2.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_map2_count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_map2_count.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_map2_size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_map2_size.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_map_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_map_rep.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_nanoparquet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_nanoparquet.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_plan.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_quarto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_quarto.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_quarto_files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_quarto_files.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_quarto_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_quarto_rep.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_render.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_render_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_render_raw.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_render_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_render_rep.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_rep.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_rep2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_rep2.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_rep_index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_rep_index.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_rep_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_rep_map.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_select_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_select_names.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_select_targets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_select_targets.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_skip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_skip.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_sub.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_sub.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_tangle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-tar_tangle.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_assert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-utils_assert.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_ast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-utils_ast.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_functional.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-utils_functional.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_knitr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-utils_knitr.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_logic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tarchetypes/HEAD/tests/testthat/test-utils_logic.R --------------------------------------------------------------------------------