Skip to content

Commit

Permalink
Merge pull request #995 from datacarpentry/bigger-problems-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanwhite authored Sep 29, 2023
2 parents d7f50c0 + 8e3ec98 commit b752c96
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lectures/R-solving-bigger-problems.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ title: Solving Bigger Problems
language: R
---

### Setup

```r
install.packages(c('dplyr', 'ggplot2', 'readr'))
download.file("https://ndownloader.figshare.com/files/2292172",
"surveys.csv")
download.file("https://ndownloader.figshare.com/files/3299474",
"plots.csv")
download.file("https://ndownloader.figshare.com/files/3299483",
"species.csv")
download.file("http://www.datacarpentry.org/semester-biology/data/shrub-volume-data.csv",
"shrub-volume-data.csv")
download.file("https://datacarpentry.org/semester-biology/data/mammal-size-data-clean.tsv",
"mammal-size-data-clean.tsv")
```

1. [Problem Decomposition]({{ site.baseurl }}/materials/problem-decomposition)
2. [Basic Debugging]({{ site.baseurl }}/materials/basic-debugging-R)
3. [Searching For Help]({{ site.baseurl }}/materials/googling-for-help)
Expand Down

0 comments on commit b752c96

Please sign in to comment.