Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
Fixed dotcharts (removed 1 from the top of the list)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvitolo committed Aug 28, 2016
1 parent ef9abe0 commit 5d3f5a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -185,16 +185,16 @@ leaflet(data = stations) %>% addTiles() %>%

## Analyse the spatial distribution of the monitoring stations

Below are two plots showing the spatial distribution of the monitoring stations. These are concentrated largely in urban areas and used to estimate the background level of concentration of pollutants.
Below are two plots showing the spatial distribution of the monitoring stations. These are concentrated largely in urban areas and mostly estimate the background level of concentration of pollutants.

```{r, eval=TRUE, fig.height = 10}
# Zone
dotchart(as.matrix(table(stations$Zone)))
dotchart(as.matrix(table(stations$Zone))[,1])
```

```{r, eval=TRUE}
# Environment.Type
dotchart(as.matrix(table(stations$Environment.Type[stations$Environment.Type != 'Unknown Unknown'])))
dotchart(as.matrix(table(stations$Environment.Type[stations$Environment.Type != 'Unknown Unknown']))[,1])
```

## Use multiple cores to speed up data retrieval from numerous sites
Expand Down
10 changes: 5 additions & 5 deletions README.md

Large diffs are not rendered by default.

Binary file modified README_files/figure-html/unnamed-chunk-14-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified README_files/figure-html/unnamed-chunk-15-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5d3f5a8

Please sign in to comment.