R/plot_fraction_large_euphausiid.R

Defines functions plot_fraction_large_euphausiids

Documented in plot_fraction_large_euphausiids

#' plot_fraction_large_euphausiids
#'@description
#' creates a plot showing the estimated proportion of euphausiids that were larger than 10 mm,
#' accross seasons, sites and years. Appears as Figure S5
#'
#'
#' @return
#' stores a pdf file "fraction_large_euphausiid" in graphics folder
#'
#'
#'
#' @export
#'
#' @examples
#'
plot_fraction_large_euphausiids <- function(){
require(viridis)
col <- plasma(n=16)[c(1,6,11,16)]
cur.dir <- dir()
if (!"graphics" %in% cur.dir) dir.create("graphics")

thedata <- load_zoop_data()

ylim <- with(thedata, c(min(y), max(y)))
ylim <- c(0,1)
sites <- c("A","B","C","D")
site.labels <- c("Union",
                 "Hoodsport",
                 "Duckabush",
                 "Dabob Bay")
months <- c("Jun","Jul","Aug","Sep","Oct")

years = c(2012, 2013)
plotfilename <- "graphics/fraction_large_euphausiid.pdf"
pdf(file = plotfilename, height = 6, width = 12)

par(mfrow = c(1,2), mar = c(3,3,3,1), xpd = NA , oma = c(1,1,1,10))

for (j in 1:2) {

# cycle through each site an plot (one year at a time)



plot(c(),c(),
     type = "n",
     las = 1,
     xlim = c(1,5),
     ylim = ylim,
     xlab = "",
     ylab = "",
     axes = F)
box()
axis(side = 1, at = 1:5, labels = months, cex.axis = 1.5)
axis(side = 2, las = 1, cex.axis = 1.5)
### now plot the fraction of euphausiids that were large

  for (i in 1:length(sites)) {

    plot.data <- thedata %>%
      filter(Year == years[j], Site == sites[i], Diel == "day")

    points(plot.data$Month, plot.data$plarge, pch = 21, bg = col[i], cex = 2.5)
    plot.data <- thedata %>%
      filter(Year == years[j], Site == sites[i], Diel == "night")

    points(plot.data$Month, plot.data$plarge, pch = 23, bg = col[i], cex = 2.5)

  }
if (j==1) mtext("Proportion large euphausiid", side = 2, line =2.75, las = 0, cex = 1.5)
if (j==2) legend(x=5.2, y=.5, legend = site.labels, pch = 21, pt.bg = col, pt.cex = 2.5, cex = 1.5)
}
dev.off()
}
tessington/pelagichypoxia documentation built on May 10, 2020, 5:12 p.m.