summary
method for class "lmf".
"summary"(object, what.level = c("age", "year", "total"), ...) "print"(x, digits = max(3, getOption("digits") - 3), signif.stars = getOption("show.signif.stars"), ...)
TRUE
, 'significance stars' are printed
for each coefficient.
summary.lmf
computes and returns a list of summary
statistics of the fitted lmf
model given in object
.An object of class "summary.lmf" is a list containing at most the following
components:
print.summary.lmf
formats the coefficients, standard errors and
variance-covariance matrices into easily read tables. The tests of significance
of the coefficients of selection should be considered as suggestive and should
be interpreted with caution. For tests of signifcanse a robust approach is
provided through the function boot.lmf
.
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)
#Summary
summary(lmf.1)
#Summary from within years
summary(lmf.1, what.level = "year")
#Summary from within age classes
summary(lmf.1, what.level = "age")
Run the code above in your browser using DataLab