├── .Rbuildignore ├── .dockerignore ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── workflows │ └── bookdown.yaml ├── .gitignore ├── .htmlhintrc ├── .remarkrc ├── DESCRIPTION ├── Dockerfile ├── EDA.Rmd ├── LICENSE ├── NAMESPACE ├── README.md ├── WORDLIST ├── _bookdown.yml ├── _common.R ├── _config.yml ├── _output.yaml ├── appendixes.Rmd ├── bin ├── add-r4ds-links.R ├── build.sh ├── check-r4ds-sections.R ├── check-spelling.R ├── create-sitemap.R ├── create-toc.R ├── deploy.sh ├── hypothesis.r ├── is_primary_key.R ├── r4ds-toc.R ├── render.R ├── serve.R └── style.R ├── communicate.Rmd ├── contributions.Rmd ├── data ├── README.md ├── file1.csv ├── file2.csv └── file3.csv ├── datetimes.Rmd ├── diagrams ├── Lahman1.graffle ├── Lahman1.png ├── Lahman2.graffle ├── Lahman2.png ├── Lahman3.graffle ├── Lahman3.png ├── master-batting-salaries.graffle ├── master-batting-salaries.png ├── nested_set_1.dot ├── nested_set_2.dot ├── nycflights.graffle └── nycflights.png ├── docker-compose.yml ├── explore.Rmd ├── factors.Rmd ├── functions.Rmd ├── graphics-for-communication.Rmd ├── img ├── cover.png ├── r4ds-exercise-solutions-cover.key ├── r4ds-exercise-solutions-cover.png ├── rmarkdown-file.png ├── rmarkdown-knit-button.png ├── rmarkdown-notebook.png └── visualize │ ├── unnamed-chunk-29-1.png │ ├── unnamed-chunk-29-2.png │ ├── unnamed-chunk-29-3.png │ ├── unnamed-chunk-29-4.png │ ├── unnamed-chunk-29-5.png │ └── unnamed-chunk-29-6.png ├── import.Rmd ├── includes ├── hypothesis.html ├── ort.css ├── r4ds-solutions.css └── r4ds.css ├── index.Rmd ├── intro.Rmd ├── iteration.Rmd ├── many-models.Rmd ├── model-basics.Rmd ├── model-building.Rmd ├── model.Rmd ├── pipes.Rmd ├── program.Rmd ├── r4ds-exercise-solutions.Rproj ├── r4ds-toc.csv ├── r4ds.bib ├── relational-data.Rmd ├── rmarkdown-formats.Rmd ├── rmarkdown-workflow.Rmd ├── rmarkdown.Rmd ├── rmarkdown ├── caching.Rmd ├── cv.Rmd ├── diamond-sizes.Rmd └── example.Rmd ├── strings.Rmd ├── tibble.Rmd ├── tidy.Rmd ├── transform.Rmd ├── vectors.Rmd ├── visualize.Rmd ├── workflow-basics.Rmd ├── workflow-projects.Rmd ├── workflow-scripts.Rmd └── wrangle.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !DESCRIPTION 3 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/bookdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.github/workflows/bookdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.htmlhintrc -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/.remarkrc -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/Dockerfile -------------------------------------------------------------------------------- /EDA.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/EDA.Rmd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/README.md -------------------------------------------------------------------------------- /WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/WORDLIST -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/_common.R -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/_config.yml -------------------------------------------------------------------------------- /_output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/_output.yaml -------------------------------------------------------------------------------- /appendixes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/appendixes.Rmd -------------------------------------------------------------------------------- /bin/add-r4ds-links.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/add-r4ds-links.R -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/check-r4ds-sections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/check-r4ds-sections.R -------------------------------------------------------------------------------- /bin/check-spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/check-spelling.R -------------------------------------------------------------------------------- /bin/create-sitemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/create-sitemap.R -------------------------------------------------------------------------------- /bin/create-toc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/create-toc.R -------------------------------------------------------------------------------- /bin/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/deploy.sh -------------------------------------------------------------------------------- /bin/hypothesis.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/hypothesis.r -------------------------------------------------------------------------------- /bin/is_primary_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/is_primary_key.R -------------------------------------------------------------------------------- /bin/r4ds-toc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/r4ds-toc.R -------------------------------------------------------------------------------- /bin/render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/render.R -------------------------------------------------------------------------------- /bin/serve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/serve.R -------------------------------------------------------------------------------- /bin/style.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/bin/style.R -------------------------------------------------------------------------------- /communicate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/communicate.Rmd -------------------------------------------------------------------------------- /contributions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/contributions.Rmd -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/data/README.md -------------------------------------------------------------------------------- /data/file1.csv: -------------------------------------------------------------------------------- 1 | X1,X2 2 | 1,"a" 3 | 2,"b" 4 | -------------------------------------------------------------------------------- /data/file2.csv: -------------------------------------------------------------------------------- 1 | X1,X2 2 | 3,"c" 3 | 4,"d" 4 | -------------------------------------------------------------------------------- /data/file3.csv: -------------------------------------------------------------------------------- 1 | X1,X2 2 | 5,"e" 3 | 6,"f" 4 | -------------------------------------------------------------------------------- /datetimes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/datetimes.Rmd -------------------------------------------------------------------------------- /diagrams/Lahman1.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/Lahman1.graffle -------------------------------------------------------------------------------- /diagrams/Lahman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/Lahman1.png -------------------------------------------------------------------------------- /diagrams/Lahman2.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/Lahman2.graffle -------------------------------------------------------------------------------- /diagrams/Lahman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/Lahman2.png -------------------------------------------------------------------------------- /diagrams/Lahman3.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/Lahman3.graffle -------------------------------------------------------------------------------- /diagrams/Lahman3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/Lahman3.png -------------------------------------------------------------------------------- /diagrams/master-batting-salaries.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/master-batting-salaries.graffle -------------------------------------------------------------------------------- /diagrams/master-batting-salaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/master-batting-salaries.png -------------------------------------------------------------------------------- /diagrams/nested_set_1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/nested_set_1.dot -------------------------------------------------------------------------------- /diagrams/nested_set_2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/nested_set_2.dot -------------------------------------------------------------------------------- /diagrams/nycflights.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/nycflights.graffle -------------------------------------------------------------------------------- /diagrams/nycflights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/diagrams/nycflights.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /explore.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/explore.Rmd -------------------------------------------------------------------------------- /factors.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/factors.Rmd -------------------------------------------------------------------------------- /functions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/functions.Rmd -------------------------------------------------------------------------------- /graphics-for-communication.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/graphics-for-communication.Rmd -------------------------------------------------------------------------------- /img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/cover.png -------------------------------------------------------------------------------- /img/r4ds-exercise-solutions-cover.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/r4ds-exercise-solutions-cover.key -------------------------------------------------------------------------------- /img/r4ds-exercise-solutions-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/r4ds-exercise-solutions-cover.png -------------------------------------------------------------------------------- /img/rmarkdown-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/rmarkdown-file.png -------------------------------------------------------------------------------- /img/rmarkdown-knit-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/rmarkdown-knit-button.png -------------------------------------------------------------------------------- /img/rmarkdown-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/rmarkdown-notebook.png -------------------------------------------------------------------------------- /img/visualize/unnamed-chunk-29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/visualize/unnamed-chunk-29-1.png -------------------------------------------------------------------------------- /img/visualize/unnamed-chunk-29-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/visualize/unnamed-chunk-29-2.png -------------------------------------------------------------------------------- /img/visualize/unnamed-chunk-29-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/visualize/unnamed-chunk-29-3.png -------------------------------------------------------------------------------- /img/visualize/unnamed-chunk-29-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/visualize/unnamed-chunk-29-4.png -------------------------------------------------------------------------------- /img/visualize/unnamed-chunk-29-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/visualize/unnamed-chunk-29-5.png -------------------------------------------------------------------------------- /img/visualize/unnamed-chunk-29-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/img/visualize/unnamed-chunk-29-6.png -------------------------------------------------------------------------------- /import.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/import.Rmd -------------------------------------------------------------------------------- /includes/hypothesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/includes/hypothesis.html -------------------------------------------------------------------------------- /includes/ort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/includes/ort.css -------------------------------------------------------------------------------- /includes/r4ds-solutions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/includes/r4ds-solutions.css -------------------------------------------------------------------------------- /includes/r4ds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/includes/r4ds.css -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/index.Rmd -------------------------------------------------------------------------------- /intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/intro.Rmd -------------------------------------------------------------------------------- /iteration.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/iteration.Rmd -------------------------------------------------------------------------------- /many-models.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/many-models.Rmd -------------------------------------------------------------------------------- /model-basics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/model-basics.Rmd -------------------------------------------------------------------------------- /model-building.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/model-building.Rmd -------------------------------------------------------------------------------- /model.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/model.Rmd -------------------------------------------------------------------------------- /pipes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/pipes.Rmd -------------------------------------------------------------------------------- /program.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/program.Rmd -------------------------------------------------------------------------------- /r4ds-exercise-solutions.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/r4ds-exercise-solutions.Rproj -------------------------------------------------------------------------------- /r4ds-toc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/r4ds-toc.csv -------------------------------------------------------------------------------- /r4ds.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/r4ds.bib -------------------------------------------------------------------------------- /relational-data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/relational-data.Rmd -------------------------------------------------------------------------------- /rmarkdown-formats.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown-formats.Rmd -------------------------------------------------------------------------------- /rmarkdown-workflow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown-workflow.Rmd -------------------------------------------------------------------------------- /rmarkdown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown.Rmd -------------------------------------------------------------------------------- /rmarkdown/caching.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown/caching.Rmd -------------------------------------------------------------------------------- /rmarkdown/cv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown/cv.Rmd -------------------------------------------------------------------------------- /rmarkdown/diamond-sizes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown/diamond-sizes.Rmd -------------------------------------------------------------------------------- /rmarkdown/example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/rmarkdown/example.Rmd -------------------------------------------------------------------------------- /strings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/strings.Rmd -------------------------------------------------------------------------------- /tibble.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/tibble.Rmd -------------------------------------------------------------------------------- /tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/tidy.Rmd -------------------------------------------------------------------------------- /transform.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/transform.Rmd -------------------------------------------------------------------------------- /vectors.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/vectors.Rmd -------------------------------------------------------------------------------- /visualize.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/visualize.Rmd -------------------------------------------------------------------------------- /workflow-basics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/workflow-basics.Rmd -------------------------------------------------------------------------------- /workflow-projects.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/workflow-projects.Rmd -------------------------------------------------------------------------------- /workflow-scripts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/workflow-scripts.Rmd -------------------------------------------------------------------------------- /wrangle.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnold/r4ds-exercise-solutions/HEAD/wrangle.Rmd --------------------------------------------------------------------------------