arpr {laeken} | R Documentation |
At-risk-of-poverty rate
Description
Estimate the at-risk-of-poverty rate, which is defined as the proportion of persons with equivalized disposable income below the at-risk-of-poverty threshold.
Usage
arpr(
inc,
weights = NULL,
sort = NULL,
years = NULL,
breakdown = NULL,
design = NULL,
cluster = NULL,
data = NULL,
p = 0.6,
var = NULL,
alpha = 0.05,
threshold = NULL,
na.rm = FALSE,
...
)
Arguments
inc |
either a numeric vector giving the equivalized disposable income,
or (if |
weights |
optional; either a numeric vector giving the personal sample
weights, or (if |
sort |
optional; either a numeric vector giving the personal IDs to be
used as tie-breakers for sorting, or (if |
years |
optional; either a numeric vector giving the different years of
the survey, or (if |
breakdown |
optional; either a numeric vector giving different domains,
or (if |
design |
optional and only used if |
cluster |
optional and only used if |
data |
an optional |
p |
a numeric vector of values in |
var |
a character string specifying the type of variance estimation to
be used, or |
alpha |
numeric; if |
threshold |
if 'NULL', the at-risk-at-poverty threshold is estimated from the data. |
na.rm |
a logical indicating whether missing values should be removed. |
... |
if |
Details
The implementation strictly follows the Eurostat definition.
Value
A list of class "arpr"
(which inherits from the class
"indicator"
) with the following components:
value |
a numeric vector containing the overall value(s). |
valueByStratum |
a |
varMethod |
a character string specifying the type of variance
estimation used, or |
var |
a numeric vector containing the variance estimate(s), or
|
varByStratum |
a |
ci |
a numeric vector or matrix containing the lower and upper
endpoints of the confidence interval(s), or |
ciByStratum |
a |
alpha |
a numeric value giving the significance level used for
computing the confidence interval(s) (i.e., the confidence level is |
years |
a numeric vector containing the different years of the survey. |
strata |
a character vector containing the different domains of the breakdown. |
p |
a numeric giving the percentage of the weighted median used for the at-risk-of-poverty threshold. |
threshold |
a numeric vector containing the at-risk-of-poverty threshold(s). |
Author(s)
Andreas Alfons
References
A. Alfons and M. Templ (2013) Estimation of Social Exclusion Indicators from Complex Surveys: The R Package laeken. Journal of Statistical Software, 54(15), 1–25. doi:10.18637/jss.v054.i15
Working group on Statistics on Income and Living Conditions (2004) Common cross-sectional EU indicators based on EU-SILC; the gender pay gap. EU-SILC 131-rev/04, Eurostat, Luxembourg.
See Also
Examples
data(eusilc)
# overall value
arpr("eqIncome", weights = "rb050", data = eusilc)
# values by region
arpr("eqIncome", weights = "rb050",
breakdown = "db040", data = eusilc)