Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jessecambon authored Oct 18, 2019
1 parent a5748a7 commit 429c968
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,10 @@ Plot our geolocated points:

```r
ggplot(lat_longs %>% filter(!is.na(longitude)),aes(longitude, latitude),color="grey98") +
borders("state") +
theme_classic() +
geom_point() +
theme(line = element_blank(),
text = element_blank(),
title = element_blank()) +
borders("state") + theme_classic() + geom_point() +
theme(line = element_blank(),text = element_blank(),title = element_blank()) +
geom_label_repel(aes(label =name),show.legend=F) +
scale_x_continuous(breaks = NULL) +
scale_y_continuous(breaks = NULL)
scale_x_continuous(breaks = NULL) + scale_y_continuous(breaks = NULL)
```
![](us_map.png)

Expand Down

0 comments on commit 429c968

Please sign in to comment.