summaryrefslogtreecommitdiff
path: root/src/buffalo-recycle-part1.Rmd
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffalo-recycle-part1.Rmd')
-rw-r--r--src/buffalo-recycle-part1.Rmd5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buffalo-recycle-part1.Rmd b/src/buffalo-recycle-part1.Rmd
index 22ee47c..93cc7c7 100644
--- a/src/buffalo-recycle-part1.Rmd
+++ b/src/buffalo-recycle-part1.Rmd
@@ -36,13 +36,14 @@ head(buf_datasets$title)
I'm going to explore the first dataset listed, which provides monthly recycling rates for different Buffalo neighborhoods. The dataset is available in several formats:
```{r}
-buf_datasets$distribution[[1]]$mediaType
+ind = which(buf_datasets$title == 'Neighborhood Curbside Recycling Rates')
+buf_datasets$distribution[[ind]]$mediaType
```
You can get the URL for the CSV dataset with `$downloadURL`:
```{r}
-csv_url = buf_datasets$distribution[[1]]$downloadURL[1]
+csv_url = buf_datasets$distribution[[ind]]$downloadURL[1]
csv_url
```