DanOvando / marlin

A package for simulating 2-D populations of fauna, fisheries, and marine protected areas
https://danovando.github.io/marlin
Mozilla Public License 2.0
4 stars 3 forks source link

Website update (typo): Evaluating MPAs #78

Closed echelleburns closed 2 years ago

echelleburns commented 2 years ago

In the Evaluating MPAs section, when the MPA network is being created, it is plotted using the following code:

mpa_locations %>% 
  ggplot(aes(x,y, fill = mpa)) + 
  geom_tile() + 
  scale_fill_brewer(palette = "Accent", direction  = -1, name = "MPA") + 
  scale_x_continuous(name = "Lat") + 
  scale_y_continuous(name = "Lon")

Are the names for the x and y axes correct, or should they be switched?

DanOvando commented 2 years ago

Good catch! fixing