├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── feature.md │ └── maintenance.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── render.yaml ├── .gitignore ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── README.md ├── README.qmd ├── _quarto.yml ├── cloud-storage.qmd ├── crew.qmd ├── data.qmd ├── debugging.qmd ├── drake.qmd ├── dynamic.qmd ├── functions.qmd ├── help.qmd ├── hpc.qmd ├── index.qmd ├── inst ├── CITATION └── WORDLIST ├── literate-programming.qmd ├── man ├── figures │ ├── 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 │ ├── drake-dynamic-drake.png │ ├── drake-dynamic-targets.png │ ├── drake-graph.png │ ├── dynamic-rmarkdown-params.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── knitr-graph.png │ ├── knitr-ide.png │ ├── knitr-source.png │ ├── logo.png │ ├── logo.svg │ ├── new_rmd.png │ ├── param-qmd.png │ ├── tar_watch.png │ └── target_markdown.png └── targets_manual_empty.Rd ├── markdown.qmd ├── packages.qmd ├── performance.qmd ├── projects.qmd ├── random.qmd ├── static.qmd ├── targets-manual.Rproj ├── targets.qmd └── walkthrough.qmd /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.github/ISSUE_TEMPLATE/maintenance.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.github/workflows/render.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: Eli Lilly and Company 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/NAMESPACE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/README.md -------------------------------------------------------------------------------- /README.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/README.qmd -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/_quarto.yml -------------------------------------------------------------------------------- /cloud-storage.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/cloud-storage.qmd -------------------------------------------------------------------------------- /crew.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/crew.qmd -------------------------------------------------------------------------------- /data.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/data.qmd -------------------------------------------------------------------------------- /debugging.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/debugging.qmd -------------------------------------------------------------------------------- /drake.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/drake.qmd -------------------------------------------------------------------------------- /dynamic.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/dynamic.qmd -------------------------------------------------------------------------------- /functions.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/functions.qmd -------------------------------------------------------------------------------- /help.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/help.qmd -------------------------------------------------------------------------------- /hpc.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/hpc.qmd -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/index.qmd -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /literate-programming.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/literate-programming.qmd -------------------------------------------------------------------------------- /man/figures/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /man/figures/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /man/figures/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /man/figures/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /man/figures/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /man/figures/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/apple-touch-icon.png -------------------------------------------------------------------------------- /man/figures/drake-dynamic-drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/drake-dynamic-drake.png -------------------------------------------------------------------------------- /man/figures/drake-dynamic-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/drake-dynamic-targets.png -------------------------------------------------------------------------------- /man/figures/drake-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/drake-graph.png -------------------------------------------------------------------------------- /man/figures/dynamic-rmarkdown-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/dynamic-rmarkdown-params.png -------------------------------------------------------------------------------- /man/figures/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/favicon-16x16.png -------------------------------------------------------------------------------- /man/figures/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/favicon-32x32.png -------------------------------------------------------------------------------- /man/figures/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/favicon.ico -------------------------------------------------------------------------------- /man/figures/knitr-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/knitr-graph.png -------------------------------------------------------------------------------- /man/figures/knitr-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/knitr-ide.png -------------------------------------------------------------------------------- /man/figures/knitr-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/knitr-source.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/figures/new_rmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/new_rmd.png -------------------------------------------------------------------------------- /man/figures/param-qmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/param-qmd.png -------------------------------------------------------------------------------- /man/figures/tar_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/tar_watch.png -------------------------------------------------------------------------------- /man/figures/target_markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/figures/target_markdown.png -------------------------------------------------------------------------------- /man/targets_manual_empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/man/targets_manual_empty.Rd -------------------------------------------------------------------------------- /markdown.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/markdown.qmd -------------------------------------------------------------------------------- /packages.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/packages.qmd -------------------------------------------------------------------------------- /performance.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/performance.qmd -------------------------------------------------------------------------------- /projects.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/projects.qmd -------------------------------------------------------------------------------- /random.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/random.qmd -------------------------------------------------------------------------------- /static.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/static.qmd -------------------------------------------------------------------------------- /targets-manual.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/targets-manual.Rproj -------------------------------------------------------------------------------- /targets.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/targets.qmd -------------------------------------------------------------------------------- /walkthrough.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-books/targets/HEAD/walkthrough.qmd --------------------------------------------------------------------------------