R/doDBestimation.R
doDBestimation.Rd
Create design-based point and variance estimates from RDBES estimation object (rdbesEstimObj)
doDBestimation(
x = rdbesEstimObj,
estimateType = "total",
pointEstimator = "Unbiased",
varEstimator = "WRonPSUviaPik",
stage = 0,
domainOfinterest = NULL
)
a data.frame (or data.table) in rdbesEstimObj format with value of target variable in column targetValue
a string with type of estimate. As of now only "total" is defined
a string with type of point estimator. As of now only "Unbiased" is defined
a string with type of variance estimator. As of now only "WRonPSUviaPik" is defined
a natural number (0,1,..) with sampling stage of estimate. 0 corresponds to DE level.
list ofdomains of interest (e.g., SAarea). As of now only NULL (=no domain estimate) is defined
a list of values for pointEstimate, varEstimate and estimation options
if (FALSE) {
data(shrimps)
doDBestimation (x = shrimps, estimateType = "total",
pointEstimator = "Unbiased", varEstimator = "WRonPSUviaPsi",stage = 0,
domainOfinterest = NULL )
}