R/histograms.size.maturity_oneoff.r

Defines functions histograms.size.maturity.update

  histograms.size.maturity.update = function( p ) {
    # size frequency distributions of snow crab, broken down by maturity

  message("\n Deprecated. Use bio.snowcrab::size_distributions() instead.\n")

    outdir=file.path( p$annual.results, "figures", "size.freq", "survey", "oneoff")

      loc = file.path(project.datadirectory("bio.snowcrab"), "output", "size.data_oneoff")
       
      dir.create(path=outdir, recursive=T, showWarnings=F)
      dir.create(path=loc, recursive=T, showWarnings=F)
      outfilename = paste( c("mi", "mm", "fi", "fm"), "rdata", sep=".")
      outfile = file.path(loc, paste(outfilename))
       
      # areas = c("cfanorth.not.glace.bay", "cfa22outer", "cfasouth" )
      # areas = c("cfaall",  "cfanorth", "cfasouth", "cfa20", "cfa21", "cfa22", "cfa23", "cfa24", "cfa4x", "cfa23slope", "cfa24slope", "cfaslope"  )
      areas = c("cfanorth", "cfasouth", "cfa4x")
     
     
        year = (p$year.assessment-5):p$year.assessment

        set = snowcrab.db( DS="set.clean")
        set = set[ set$yr %in% year, ]

        u = which(set$yr == 2022)

        distances =  rdist( set[,c("plon", "plat")], set[ u, c("plon", "plat") ] )
        distances[ which(distances < 5 ) ] = NA

        v = which( !is.finite( rowSums(distances) ) ) 
        set = set[v, ]
        set$sid = paste(set$trip, set$set, sep="~")

 
        hvar="cw"
        bw = 2
        s0 = 10
        s1 = 150

        det=det[(det[,hvar]>=s0 & det[,hvar]<=s1),]
        breaks = seq(s0, s1, bw)

        bwf = 2
        breaksf = seq(s0, s1, bwf)

        m.imm = make.histograms(set, det[filter.class(det, "m.imm"),], hvar=hvar, breaks=breaks )
        m.mat = make.histograms(set, det[filter.class(det, "m.mat"),], hvar=hvar, breaks=breaks )
        f.imm = make.histograms(set, det[filter.class(det, "f.imm"),], hvar=hvar, breaks=breaksf )
        f.mat = make.histograms(set, det[filter.class(det, "f.mat"),], hvar=hvar, breaks=breaksf )
  

      # males
      fn = file.path(  outdir, "male.pdf" )
      
      #Cairo( file=fn, type="pdf", bg="white", units="in", width=6, height=8 )
      #Cairo( file=fn, type="png", bg="white", units="in", width=6, height=8, dpi=450 )  
      pdf(file=fn, width=6, height=8, bg='white')
      

      ncols = length(areas)
      nrows = length(year)
      pl = layout( matrix( c(1:(ncols*nrows)), nrow=nrows, ncol=ncols, byrow=F ) )
      par(oma=c(5, 4, 4, 1)) # outer margins default:  c(0, 1, 0, 1)'c(bottom, left, top, right)'
      par(mar=c(0, 0, 0.4, 0))

      # ylim=c(0,400) # for 4X
      ylim=c(0,990)
      xlim=c(0,140)
      cols = c("blue3", "darkslategray1")

      for (a in 1:(ncols)) {
        set0 = set[polygon_inside(set, areas[a]),]
        for (y in 1:nrows) {
          set1 = set0[ which(set0$yr==year[y] ), ]
          sids = sort(unique(set1$sid))

          m.i = m.imm[which( rownames(m.imm)%in% sids ) ,]
          m.i.means = apply(X=m.i, MARGIN=2, FUN=mean, na.rm=T)
          m.m = m.mat[which( rownames(m.mat)%in% sids ) ,]
          m.m.means = apply(X=m.m, MARGIN=2, FUN=mean, na.rm=T)

          toplot = rbind(m.m.means, m.i.means)
          rn = as.numeric(colnames(toplot))
          toplot = toplot[, rn>=xlim[1] & rn<=xlim[2]]
       
          # out = rbind( out, cbind( year[y], toplot)) 

          axisnames = F
          if (year[y]==year[nrows]) axisnames=T  # last row

          axes = F
#          barplot(toplot, space=0, axisnames=axisnames, ylim=ylim, axes=axes, col=cols, xpd=F, lwd=0.5)
          ggplot( toplot, aes(x=cwd, y=den, fill=mat) ) +
            geom_bar(stat="identity") + 
            scale_fill_brewer(palette="Blues") + 
            theme_minimal()



          if (areas[a]==areas[1] ) {
            axis(2, las=2, cex=0.5) # first col
          }
          
          if (areas[a]==areas[ncols]) {
            text( dim(toplot)[2]-4, ylim[2]*2/3, year[y], cex=1 )
          }
          
          if (areas[a]==areas[3] & year[y] %in% c(1998:2000) ) {
          } else {
            abline( v=41, lwd=1, lty="longdash" )
          }
          
          if (areas[a]==areas[3] & year[y]==year[1] ) {
            xl = c(xlim[2]*0.1, xlim[2]*0.1)
            yl = c(ylim[2]*0.8, ylim[2]*0.6 )
        #    points( x=xl, y=yl, pch=22, bg=c(cols[2], cols[1]), cex=2 )
        #    text( x=xl+xlim[2]*0.02, y=yl-ylim[2]*0.05, c("Immature", "Mature"), cex=1, pos=4)
          }

        }
     }

     mtext("Carapace width (mm)", side=1, outer=T, line=2.5, cex=0.75)
     mtext(expression(paste("No. / ", km^2)), side=2.5, outer=T, line=3, cex=0.75)
     mtext("NENS", side=3, outer=T, line=1, at=0.15, cex=0.75)
     mtext("SENS", side=3, outer=T, line=1, at=0.5, cex=0.75)
     mtext("4X", side=3, outer=T, line=1, at=0.85, cex=0.75)
  #   mtext("MALE", side=3, outer=T, line=3, cex=0.75)

  dev.off()
  #cmd( "convert   -trim -quality 9  -geometry 200% -frame 2% -mattecolor white -antialias ", paste(fn, "pdf", sep="."),  paste(fn, "png", sep=".") )
  
  print(fn)
   
      # females
  fn = file.path(  outdir, "female.pdf" )
  
  pdf(file=fn, width=6, height=8, bg='white')
  #Cairo( file=fn, type="png", bg="white", units="in", width=6, height=8, dpi=350 )  
  #Cairo( file=fn, type="pdf", bg="white", units="in", width=6, height=8 )
    
      ncols = length(areas)
      nrows = length(year)
      pl = layout( matrix( c(1:(ncols*nrows)), nrow=nrows, ncol=ncols, byrow=F ) )
      par(oma=c(5, 4, 4, 1)) # outer margins default:  c(0, 1, 0, 1)'c(bottom, left, top, right)'
      par(mar=c(0, 0, 0.4, 0))

      # ylim=c(0,400)
      ylim=c(0,1100)
      xlim=c(0,100)

      cols = c("firebrick1", "lightpink" )

      for (a in 1:(ncols)) {
        set0 = set[polygon_inside(set, areas[a]),]
        for (y in 1:nrows) {
          set1 = set0[ which(set0$yr==year[y]) , ]
          sids = sort(unique(set1$sid))

          f.i = f.imm[which( rownames(f.imm)%in% sids ) ,]
          f.i.means = apply(X=f.i, MARGIN=2, FUN=mean, na.rm=T)
          f.m = f.mat[which( rownames(f.mat)%in% sids ) ,]
          f.m.means = apply(X=f.m, MARGIN=2, FUN=mean, na.rm=T)

          toplot = rbind(f.m.means, f.i.means)
          rn = as.numeric(colnames(toplot))
          toplot = toplot[, rn>=xlim[1] & rn<=xlim[2]]

          axes = F

          axisnames = F
          if (year[y]==year[nrows]) axisnames=T  # last row

          barplot(toplot, space=0.1, axisnames=axisnames, ylim=ylim, axes=axes, col=cols, xpd=F, lwd=0.7 )
         
           if (areas[a]==areas[1] ) {
            axis(2, las=2, cex=0.5) # first col
          }
 
          if (areas[a]==areas[ncols]) text( dim(toplot)[2]-4, ylim[2]*2/3, year[y], cex=1.2 )

          if (areas[a]==areas[3] & year[y]==year[1] ) {
            xl = c(xlim[2]*0.18, xlim[2]*0.18)
            yl = c(ylim[2]*0.8, ylim[2]*0.6 )
     #       points( x=xl, y=yl, pch=22, bg=c(cols[2], cols[1]), cex=2 )
     #       text( x=xl+xlim[2]*0.01, y=yl-ylim[2]*0.05, c("Immature", "Mature"), cex=1, pos=4)
          }

     }}

      mtext("Carapace width (mm)", side=1, outer=T, line=2.5, cex=0.75)
      mtext(expression(paste("No. / ", km^2)), side=2, outer=T, line=3, cex=0.75)
      mtext("NENS", side=3, outer=T, line=1, at=0.15, cex=0.75)
      mtext("SENS", side=3, outer=T, line=1, at=0.5, cex=0.75)
      mtext("4X",   side=3, outer=T, line=1, at=0.85, cex=0.75)
    #  mtext("FEMALE", side=3, outer=T, line=3, cex=0.75)
      
    dev.off()
 #cmd( "convert   -trim -quality 9  -geometry 200% -frame 2% -mattecolor white -antialias ", paste(fn, "pdf", sep="."),  paste(fn, "png", sep=".") )
 
  print(fn)
  
  return("Done")
  }
jae0/snowcrab documentation built on Feb. 27, 2024, 2:42 p.m.