estimatepopulation.0 {SparseMSE} | R Documentation |
Estimate the total population including the dark figure.
If the user wishes to find bootstrap confidence intervals then the routine estimatepopulation
should be used instead.
Description
This routine estimates the total population size, which includes the dark figure, together with confidence intervals as specified. It also returns the details of the fitted model. The user can choose whether to fit main effects only, to fit a particular model containing specified two-list parameters, or to choose the model using the stepwise approach described by Chan, Silverman and Vincent (2019).
Usage
estimatepopulation.0(zdat, method = "stepwise", quantiles = c(0.025,
0.975), mX = NULL, pthresh = 0.02)
Arguments
zdat |
Data matrix with |
method |
If |
quantiles |
Quantiles of interest for confidence intervals. |
mX |
A |
pthresh |
Threshold p-value used if |
Value
A list with components as below
estimate
Point estimate and confidence interval estimates corresponding to specified quantiles.
MSEfit
The model fitted to the data in the format described in modelfit
.
References
Chan, L., Silverman, B. W., and Vincent, K. (2019). Multiple Systems Estimation for Sparse Capture Data: Inferential Challenges when there are Non-Overlapping Lists. Available from https://arxiv.org/abs/1902.05156.
Examples
data(NewOrl)
data(NewOrl_5)
estimatepopulation.0(NewOrl, method="stepwise", quantiles=c(0.025,0.975))
estimatepopulation.0(NewOrl_5, method="main", quantiles=c(0.01, 0.05,0.95, 0.99))