Skip to content

Commit 5032a23

Browse files
committed
2 parents 6dca6b2 + 429c968 commit 5032a23

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,10 @@ Plot our geolocated points:
4343

4444
```r
4545
ggplot(lat_longs %>% filter(!is.na(longitude)),aes(longitude, latitude),color="grey98") +
46-
borders("state") +
47-
theme_classic() +
48-
geom_point() +
49-
theme(line = element_blank(),
50-
text = element_blank(),
51-
title = element_blank()) +
46+
borders("state") + theme_classic() + geom_point() +
47+
theme(line = element_blank(),text = element_blank(),title = element_blank()) +
5248
geom_label_repel(aes(label =name),show.legend=F) +
53-
scale_x_continuous(breaks = NULL) +
54-
scale_y_continuous(breaks = NULL)
49+
scale_x_continuous(breaks = NULL) + scale_y_continuous(breaks = NULL)
5550
```
5651
![](us_map.png)
5752

0 commit comments

Comments
 (0)