Skip to content

Commit f8a53f0

Browse files
committed
change font sizes
1 parent d71facd commit f8a53f0

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

graphics/studymapcolour.jpg

-213 KB
Loading

input/pond_descriptive.csv

+1
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@ NAT-7,"45.39146021,",-76.071336,na,7999,2.142,0.005
5050
NAT-8,"45.046375,",-75.858456,na,1383,1.001,0.008
5151
NAT-9,"45.38772056,",-76.07981221,na,1586,2.081,0.0003
5252
NAT-10,"45.38854686,",-76.08141043,na,9379,2.081,0.0003
53+
NAT-11,45.388351,-76.070518,na,3641,na,na

script/5a - SpatialFigures.R

+9-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ sscol <- ggplot() +
3030
panel.border = element_rect(size = 1, fill = NA),
3131
panel.background = element_rect(fill = NA),
3232
panel.grid = element_line(color = '323232', size = 0.2),
33-
axis.text = element_text(size = 11, color = 'black'),
33+
axis.text = element_text(size = 13, color = 'black'),
3434
axis.title = element_blank(),
35+
legend.text = element_text(size = 20),
3536
plot.background = element_rect(fill = NA, colour = NA))
3637

3738
# satellite imagery
@@ -46,7 +47,13 @@ register_google(key = "AIzaSyDlRF5BYeskCH7qWtq13WUV5ifG9Q1kT1c")
4647
satcol <- qmap(location = "Ottawa, Ontario", zoom = 9, maptype = "satellite", source = "google") +
4748
geom_point(data = ponds_e, aes(x = lat, y = long, shape = Group), size = 2) +
4849
scale_shape_manual(values = c(21, 24)) +
49-
theme(legend.position = 'none')
50+
theme(legend.position = 'none',
51+
panel.border = element_rect(size = 1, fill = NA),
52+
panel.background = element_rect(fill = NA),
53+
panel.grid = element_line(color = 'black', size = 0.2),
54+
axis.text = element_text(size = 13, color = 'black'),
55+
axis.title = element_blank(),
56+
panel.ontop = TRUE)
5057

5158
sscol + satcol + plot_layout(widths = c(2,1))
5259

0 commit comments

Comments
 (0)