R/ts.landings.and.tacs.r

Defines functions ts.landings.and.tacs

  ts.landings.and.tacs = function( x, y, z, outdir, outfile, title) {
    # one time thing .. silly but faster this way
      plot(x, y, type="n", axes=F, xlab="Years", ylab=title, cex=2 )
      lines( x, y, col="orange", lty="solid", lwd=4 )
      points(x, y, pch=10)

#    lines( x, z, col="blue", lty="solid", lwd=4 )
#      points(x, z, pch=11)

      axis( 1 )
      axis( 2 )

      Pr(dev="png", dname=outdir, fname=outfile, width=8, height=4)

  }
jae0/snowcrab documentation built on Feb. 27, 2024, 2:42 p.m.