summary
method for class "boot.lmf".
"summary"(object, ret.bootstraps = FALSE, ...) "print"(x, digits = max(3, getOption("digits") - 3), signif.stars = getOption("show.signif.stars"), ...)
TRUE
the bootstrap replicates are
returned in the output.
empty
TRUE
, 'significance stars' are printed
for each coefficient.
summary.boot.lmf
computes and returns a list of summary
statistics of the bootstrap replicates of a fitted lmf
model given
in object
.An object of class "summary.boot.lmf" is a list containing at most the following
components:
H0exp
and the assumption of fluctuating
selection (Hexp = "fs"
).H0exp
and the assumption of no fluctuating selection
(Hexp = "nfs"
).H0exp
and the assumption of
directional selection (Hexp = "ds"
).aM
under the
specified null hypothesis H0exp
and the assumption of fluctuating
selection (Hexp = "fs"
).anf
under the
specified null hypothesis H0exp
and the assumption of no fluctuating
selection (Hexp = "nfs"
).at
under the
specified null hypothesis H0exp
and the assumption of directional
selection (Hexp = "ds"
). These bootstrap replicates are used to
generate H0Mnfboot
.M
under the
specified null hypothesis H0exp
and the assumption of directional
selection (Hexp = "ds"
).summary.boot.lmf
formats bootstrap replicates in a user-friendly way,
and formats the temporal coefficients and variance-covariance matrix into
easily read tables for hypothesis tests.
lmf
, summary
, boot.lmf
#Data set from Engen et al. 2012
data(sparrowdata)
#Fit model
lmf.1 <- lmf(formula = cbind(recruits, survival) ~ weight + tars,
age = age, year = year, data = sparrowdata)
#Bootstrap parameters
b.1 <- boot.lmf(object = lmf.1, nboot = 10, sig.dj = TRUE,
what = "all", asim = "parametric")
#Summary
summary(b.1)
Run the code above in your browser using DataLab