changed figure format & size

This commit is contained in:
Ben Varick 2023-10-16 13:52:43 -05:00
parent 748faf5697
commit ced316e78f
2 changed files with 6 additions and 8 deletions

View File

@ -7,19 +7,17 @@ colors <- list(darkblue = "#062e57",
# save figure # save figure
tiff(filename = "figures/map.tiff", tiff(filename = "figures/map.tiff",
width = 6600, width = 11,
height = 10200, height = 17,
units = "in",
res = 600, res = 600,
compression = "lzw") compression = "lzw")
png(filename = "figures/map.png", png(filename = "figures/map.png",
width = 6600,
height = 10200,
res = 600)
svg(filename = "figures/map.svg",
width = 11, width = 11,
height = 17) height = 17,
units = "in",
res = 600)
# plot map # plot map

View File