Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jessecambon committed Oct 20, 2019
2 parents 6dca6b2 + 429c968 commit 5032a23
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 5032a23

Please sign in to comment.