Description Usage Format Examples
Bootstrapped VBGF estimates for the alba lfq dataset as estimated by
ELEFAN_GA
.
1 |
A list of class 'lfqBoot'
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #### For documentation only - How data was produced ####
library(parallel)
library(TropFishR)
library(ks)
data(alba)
# ELEFAN_GA_boot settings
MA <- 7
low_par <- list(Linf = 8, K = 0.1, t_anchor = 0, C = 0, ts = 0)
up_par <- list(Linf = 15, K = 5, t_anchor = 1, C = 1, ts = 1)
seasonalised <- FALSE
popSize <- 100
maxiter <- 50
run <- 10
pmutation <- 0.2
nresamp <- 200
# Bootstrapped estimates
alba_boot <- ELEFAN_GA_boot(lfq=alba, MA = MA, seasonalised = seasonalised,
up_par = up_par, low_par = low_par,
popSize = popSize, maxiter = maxiter, run = run, pmutation = pmutation,
nresamp = nresamp, parallel = TRUE, no_cores = detectCores(),
seed = 20
)
data(alba_boot)
head(alba_boot$bootRaw)
head(alba_boot$seed)
# plot
univariate_density(alba_boot)
LinfK_scatterhist(alba_boot, phi.contour = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.