LP_IS_est | R Documentation |
This will take a previous fit and return estimates of abundance. The population abundance is estimated using a Horvitz-Thompson type estimator and the user can request abundance estimates for sub-sets of the population
LP_IS_est(LP_IS_fit, N_hat = ~1, conf_level = 0.95, trace = FALSE)
LP_IS_fit |
A result of an LP_IS_fit() call. |
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. |
trace |
If trace flag is set in call when estimating functions |
An list object with abundance estimates and other information with the following elements
summary Data frame with abundance estimates, their SE, and CIs as requested
detail List with many components, including the rawdata, model fitting information, observed and expected values, residual plot, etc
datetime Date and time the estimation was done from the fit.
Schwarz, C. J. cschwarz.stat.sfu.ca@gmail.com.
data(data_wae_is_short)
fit <- Petersen::LP_IS_fit(data=data_wae_is_short, p_model=~..time)
fit$summary
est <- LP_IS_est(fit, N_hat=~1)
est$summary
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.