LP_modavg {Petersen} | R Documentation |
Create an table of individual estimates and the model averaged values
Description
This will take a series of LP fits and computes the model averages for each set of N_hat
Usage
LP_modavg(..., N_hat = ~1, conf_level = 0.95)
Arguments
... |
Series of LP fits |
N_hat |
A formula requesting which abundance estimates should be formed. The formula are
expanded against the data frame to determine which records form part of the abundance estimate.
The formula is evaluated against the Some familiarity on how In addition to the variables in the |
conf_level |
The expected coverage for confidence intervals on N. |
Value
An data frame with model averaged values for abundance
Examples
data(data_rodli)
mt <- Petersen::LP_fit(data=data_rodli, p_model=~..time)
m0 <- Petersen::LP_fit(data=data_rodli, p_model=~1)
Petersen::LP_modavg(m0,mt)