a4aFitMCMC
a4aFitMCMC-class.Rd
The a4aFitMCMC
class extends a4aFitSA
to store information about the MCMC run.
additional argument list that might never be used
object of relevant class (see signature of method)
an object to be coerced into mcmc
a numeric with the number of iterations to be removed
A character vector for the object name.
A textual description of the object contents.
A named numeric vector with various values of quant and year ranges, plusgroup, fishing mortality ranges, etc.
The function call
Information on call duration
Fit summary
Estimates of stock numbers-at-age
Estimates of fishing mortality at age
Estimates of catch numbers-at-age
Estimates of survey or CPUE indices-at-age
An object of class SCAMCMC
with information about the MCMC run
All slots in the class have accessor and replacement methods defined that allow retrieving and substituting individual slots.
The values passed for replacement need to be of the class of that slot. A numeric vector can also be used when replacing FLQuant slots, and the vector will be used to substitute the values in the slot, but not its other attributes.
A construction method exists for this class that can take named arguments for
any of its slots. All slots are then created to match the requirements of the
class validity. If an unnamed FLQuant
object is provided, this is used
for sizing, but not for populating any slot.
data(ple4)
data(ple4.index)
obj <- sca(stock=ple4, indices=FLIndices(ple4.index), fit="assessment")
obj
#> a4a model fit for: PLE
#>
#> Call:
#> .local(stock = stock, indices = indices, fit = "assessment")
#>
#> Time used:
#> Pre-processing Running a4a Post-processing Total
#> 1.1563153 9.1971567 0.3605785 10.7140505
#>
#> Submodels:
#> fmodel: ~te(age, year, k = c(6, 30), bs = "tp") + s(age, k = 6)
#> srmodel: ~factor(year)
#> n1model: ~s(age, k = 3)
#> qmodel:
#> BTS-Combined (all): ~s(age, k = 6)
#> vmodel:
#> catch: ~s(age, k = 3)
#> BTS-Combined (all): ~1
slotNames(obj)
#> [1] "pars" "call" "clock" "fitSumm" "stock.n" "harvest" "catch.n"
#> [8] "index" "name" "desc" "range"
clock(obj)
#> Pre-processing Running a4a Post-processing Total
#> 1.1563153 9.1971567 0.3605785 10.7140505
fitSumm(obj)
#> iters
#> 1
#> nopar 2.540000e+02
#> nlogl -1.008543e+03
#> maxgrad 1.278680e-03
#> nobs 8.300000e+02
#> gcv 8.858002e-02
#> convergence 0.000000e+00
#> accrate NA
#> nlogl_comp1 -1.063960e+03
#> nlogl_comp2 5.541910e+01
flq <- stock.n(obj)
is(flq)
#> [1] "FLQuant" "FLArray" "array" "structure" "vector"
flq <- index(obj)
is(flq)
#> [1] "FLQuants" "FLlst" "list" "vector"
logLik(obj)
#> 'log Lik.' 1008.543 (df=254)
AIC(obj)
#> [1] -1509.087
BIC(obj)
#> [1] -309.8444
is(pars(obj))
#> [1] "SCAPars"