Learn R Programming

vardpoor (version 0.8.4)

vardcrosannual: Variance estimation for measures of annual estimates for single and multistage stage cluster sampling designs

Description

Computes the variance estimation for measures of annual estimates for single and multistage stage cluster sampling designs.

Usage

vardcrosannual(Y, H, PSU, w_final, ID_level1, ID_level2, Dom = NULL, Z = NULL, country = NULL, years, subperiods, dataset = NULL, X = NULL, countryX = NULL, yearsX = NULL, subperiodsX = NULL, X_ID_level1 = NULL, ind_gr = NULL, g = NULL, q = NULL, datasetX = NULL, percentratio = 1, use.estVar = FALSE, confidence = 0.95)

Arguments

Y
Variables of interest. Object convertible to data.table or variable names as character, column numbers.
H
The unit stratum variable. One dimensional object convertible to one-column data.table or variable name as character, column number.
PSU
Primary sampling unit variable. One dimensional object convertible to one-column data.table or variable name as character, column number.
w_final
Weight variable. One dimensional object convertible to one-column data.table or variable name as character, column number.
ID_level1
Variable for level1 ID codes. One dimensional object convertible to one-column data.table or variable name as character, column number.
ID_level2
Optional variable for unit ID codes. One dimensional object convertible to one-column data.table or variable name as character, column number.
Dom
Optional variables used to define population domains. If supplied, variables are calculated for each domain. An object convertible to data.table or variable names as character vector, column numbers.
Z
Optional variables of denominator for ratio estimation. If supplied, the ratio estimation is computed. Object convertible to data.table or variable names as character, column numbers. This variable is NULL by default.
country
Variable for the survey countries. The values for each country are computed independently. Object convertible to data.table or variable names as character, column numbers.
years
Variable for the all survey years. The values for each year are computed independently. Object convertible to data.table or variable names as character, column numbers.
subperiods
Variable for the all survey subperiods. The values for each subperiod are computed independently. Object convertible to data.table or variable names as character, column numbers.
dataset
Optional survey data object convertible to data.table.
X
Optional matrix of the auxiliary variables for the calibration estimator. Object convertible to data.table or variable names as character, column numbers.
countryX
Optional variable for the survey countries. The values for each country are computed independently. Object convertible to data.table or variable names as character, column numbers.
yearsX
Variable of the all survey years. If supplied, residual estimation of calibration is done independently for each time period. Object convertible to data.table or variable names as character, column numbers.
subperiodsX
Variable for the all survey subperiods. If supplied, residual estimation of calibration is done independently for each time period. Object convertible to data.table or variable names as character, column numbers.
X_ID_level1
Variable for level1 ID codes. One dimensional object convertible to one-column data.table or variable name as character, column number.
ind_gr
Optional variable by which divided independently X matrix of the auxiliary variables for the calibration. One dimensional object convertible to one-column data.table or variable name as character, column number.
g
Optional variable of the g weights. One dimensional object convertible to one-column data.table or variable name as character, column number.
q
Variable of the positive values accounting for heteroscedasticity. One dimensional object convertible to one-column data.table or variable name as character, column number.
datasetX
Optional survey data object in household level convertible to data.table.
percentratio
Positive numeric value. All linearized variables are multiplied with percentratio value, by default - 1.
use.estVar
Logical value. If value is TRUE, then R function estVar is used for the estimation of covariance matrix of the residuals. If value is FALSE, then R function estVar is not used for the estimation of covariance matrix of the residuals.
confidence
optional; either a positive value for confidence interval. This variable by default is 0.95 .

Value

A list with objects are returned by the function:

References

Guillaume OSIER, Virginie RAYMOND, (2015), Development of methodology for the estimate of variance of annual net changes for LFS-based indicators. Deliverable 1 - Short document with derivation of the methodology.

Guillaume Osier, Yves Berger, Tim Goedeme, (2013), Standard error estimation for the EU-SILC indicators of poverty and social exclusion, Eurostat Methodologies and Working papers, URL http://ec.europa.eu/eurostat/documents/3888793/5855973/KS-RA-13-024-EN.PDF.

Eurostat Methodologies and Working papers, Handbook on precision requirements and variance estimation for ESS household surveys, 2013, URL http://ec.europa.eu/eurostat/documents/3859598/5927001/KS-RA-13-029-EN.PDF.

Yves G. Berger, Tim Goedeme, Guillame Osier (2013). Handbook on standard error estimation and other related sampling issues in EU-SILC, URL https://ec.europa.eu/eurostat/cros/content/handbook-standard-error-estimation-and-other-related-sampling-issues-ver-29072013_en

See Also

domain, vardcros, vardchanges

Examples

Run this code

### Example 
data("eusilc")
set.seed(1)
eusilc1 <- eusilc[1 : 100,]
set.seed(1)
data <- data.table(rbind(eusilc1, eusilc1),
                   year = c(rep(2010, nrow(eusilc1)),
                            rep(2011, nrow(eusilc1))))
data[, country := "AT"]
data[, quarter:= .I - 4 * trunc((.I - 1) / 4)]
data[age < 0, age:= 0]
PSU <- data[, .N, keyby = "db030"][, N:= NULL]
PSU[, PSU:= trunc(runif(nrow(PSU), 0, 100))]
data <- merge(data, PSU, all = TRUE, by = "db030")
PSU <- eusilc <- NULL
data[, strata := c("XXXX")]

data[, employed := trunc(runif(nrow(data), 0, 2))]
data[, unemployed := trunc(runif(nrow(data), 0, 2))]
data[, labour_force := employed + unemployed]
data[, id_lv2 := .I]

result <- vardcrosannual(Y = "employed", H = "strata",
                         PSU = "PSU", w_final = "rb050",
                         ID_level1 = "db030", ID_level2 = "id_lv2",
                         Dom = NULL, Z = NULL, country = "country",
                         years = "year", subperiods = "quarter",
                         dataset = data, percentratio = 100,
                         confidence = 0.95)

## Not run: 
# result <- vardcrosannual(Y = "unemployed", H = "strata",
#                          PSU = "PSU", w_final = "rb050",
#                          ID_level1 = "db030", ID_level1 = "id_lv2",
#                          Dom = NULL, Z = "labour_force",
#                          country = "country",  years = "year",
#                          subperiods = "quarter", dataset = data,
#                          percentratio = 100, confidence = 0.95) ## End(Not run)

Run the code above in your browser using DataLab