├── .Rbuildignore ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── EAdata.dump.xlsx ├── LICENCE ├── NAMESPACE ├── NotesOn2025.update.txt ├── R ├── dataset.documentation.r └── functions.r ├── README.html ├── README.md ├── README.rmd ├── README_files └── figure-markdown_strict │ ├── climatestripes-1.png │ ├── climproject-1.png │ ├── climproject-2.png │ ├── climproject-3.png │ ├── climproject-4.png │ ├── crosscor1-1.png │ ├── crosscor2-1.png │ ├── crosscor3-1.png │ ├── crosscor4-1.png │ ├── gslmap.plain-1.png │ ├── plotting1-1.png │ ├── plotting2-1.png │ ├── plotting3-1.png │ ├── plotting3-2.png │ ├── plotting3-3.png │ ├── plotting3-4.png │ ├── plotting3-5.png │ ├── plotting3-6.png │ ├── plotting3-7.png │ └── plotting4-1.png ├── data ├── EA.data.rda ├── EA.data.rda.old ├── ecoregions.polyset.rda ├── field.description.rda └── variable.description.rda ├── figs ├── YPR_curve.svg ├── growth_curves.svg ├── length_weight.svg ├── maturity_curves.svg └── mortality_curves.svg ├── gslea.Rproj ├── gslea.cheat.bash.w.YAML.header ├── gslea.cheat.sheet.pdf ├── man ├── EA.cor.f.Rd ├── EA.data.Rd ├── EA.plot.f.Rd ├── EA.query.f.Rd ├── EAR.name.location.f.Rd ├── field.description.Rd ├── find.vars.f.Rd ├── gslea.Rd ├── metadata.f.Rd ├── sources.f.Rd ├── variable.description.Rd └── vars.f.Rd └── shiny ├── app.R ├── images └── gslea_ears.png └── rsconnect └── shinyapps.io └── duplisea └── gslea.dcf /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /EAdata.dump.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/EAdata.dump.xlsx -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/LICENCE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NotesOn2025.update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/NotesOn2025.update.txt -------------------------------------------------------------------------------- /R/dataset.documentation.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/R/dataset.documentation.r -------------------------------------------------------------------------------- /R/functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/R/functions.r -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README.md -------------------------------------------------------------------------------- /README.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README.rmd -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/climatestripes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/climatestripes-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/climproject-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/climproject-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/climproject-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/climproject-2.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/climproject-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/climproject-3.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/climproject-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/climproject-4.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/crosscor1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/crosscor1-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/crosscor2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/crosscor2-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/crosscor3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/crosscor3-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/crosscor4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/crosscor4-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/gslmap.plain-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/gslmap.plain-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting1-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting2-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-2.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-3.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-4.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-5.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-6.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting3-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting3-7.png -------------------------------------------------------------------------------- /README_files/figure-markdown_strict/plotting4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/README_files/figure-markdown_strict/plotting4-1.png -------------------------------------------------------------------------------- /data/EA.data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/data/EA.data.rda -------------------------------------------------------------------------------- /data/EA.data.rda.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/data/EA.data.rda.old -------------------------------------------------------------------------------- /data/ecoregions.polyset.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/data/ecoregions.polyset.rda -------------------------------------------------------------------------------- /data/field.description.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/data/field.description.rda -------------------------------------------------------------------------------- /data/variable.description.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/data/variable.description.rda -------------------------------------------------------------------------------- /figs/YPR_curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/figs/YPR_curve.svg -------------------------------------------------------------------------------- /figs/growth_curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/figs/growth_curves.svg -------------------------------------------------------------------------------- /figs/length_weight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/figs/length_weight.svg -------------------------------------------------------------------------------- /figs/maturity_curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/figs/maturity_curves.svg -------------------------------------------------------------------------------- /figs/mortality_curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/figs/mortality_curves.svg -------------------------------------------------------------------------------- /gslea.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/gslea.Rproj -------------------------------------------------------------------------------- /gslea.cheat.bash.w.YAML.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/gslea.cheat.bash.w.YAML.header -------------------------------------------------------------------------------- /gslea.cheat.sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/gslea.cheat.sheet.pdf -------------------------------------------------------------------------------- /man/EA.cor.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/EA.cor.f.Rd -------------------------------------------------------------------------------- /man/EA.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/EA.data.Rd -------------------------------------------------------------------------------- /man/EA.plot.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/EA.plot.f.Rd -------------------------------------------------------------------------------- /man/EA.query.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/EA.query.f.Rd -------------------------------------------------------------------------------- /man/EAR.name.location.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/EAR.name.location.f.Rd -------------------------------------------------------------------------------- /man/field.description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/field.description.Rd -------------------------------------------------------------------------------- /man/find.vars.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/find.vars.f.Rd -------------------------------------------------------------------------------- /man/gslea.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/gslea.Rd -------------------------------------------------------------------------------- /man/metadata.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/metadata.f.Rd -------------------------------------------------------------------------------- /man/sources.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/sources.f.Rd -------------------------------------------------------------------------------- /man/variable.description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/variable.description.Rd -------------------------------------------------------------------------------- /man/vars.f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/man/vars.f.Rd -------------------------------------------------------------------------------- /shiny/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/shiny/app.R -------------------------------------------------------------------------------- /shiny/images/gslea_ears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/shiny/images/gslea_ears.png -------------------------------------------------------------------------------- /shiny/rsconnect/shinyapps.io/duplisea/gslea.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duplisea/gslea/HEAD/shiny/rsconnect/shinyapps.io/duplisea/gslea.dcf --------------------------------------------------------------------------------