Description Usage Arguments Details Value Author(s) References See Also Examples
Decomposition of indices from the Alkire-Foster class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | svyafcdec(formula, subgroup, design, ...)
## S3 method for class 'survey.design'
svyafcdec(
formula,
subgroup = ~1,
design,
g,
cutoffs,
k,
dimw = NULL,
na.rm = FALSE,
...
)
## S3 method for class 'svyrep.design'
svyafcdec(
formula,
subgroup = ~1,
design,
g,
cutoffs,
k,
dimw = NULL,
na.rm = FALSE,
...
)
## S3 method for class 'DBIsvydesign'
svyafcdec(formula, subgroup = ~1, design, ...)
|
formula |
a formula specifying the variables. Variables can be numeric or ordered factors. |
subgroup |
a formula defining the group variable for decomposition. |
design |
a design object of class |
... |
future expansion |
g |
a scalar defining the exponent of the indicator. |
cutoffs |
a list defining each variable's deprivation limit. |
k |
a scalar defining the multidimensional cutoff. |
dimw |
a vector defining the weight of each dimension in the multidimensional deprivation sum. |
na.rm |
Should cases with missing values be dropped? |
you must run the convey_prep
function on your survey design object immediately after creating it with the svydesign
or svrepdesign
function.
Object of class "cvystat
", which are vectors with a "var
" attribute giving the variance and a "statistic
" attribute giving the name of the statistic.
Guilherme Jacob, Djalma Pessoa and Anthony Damico
Sabina Alkire and James Foster (2011). Counting and multidimensional poverty measurement. Journal of Public Economics, v. 95, n. 7-8, August 2011, pp. 476-487, ISSN 0047-2727. URL http://dx.doi.org/10.1016/j.jpubeco.2010.11.006.
Alkire et al. (2015). Multidimensional Poverty Measurement and Analysis. Oxford University Press, 2015.
Daniele Pacifico and Felix Poege (2016). MPI: Stata module to compute the Alkire-Foster multidimensional poverty measures and their decomposition groups deprivation indicators and population sub-groups. URL http://EconPapers.repec.org/RePEc:boc:bocode:s458120.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | library(survey)
library(laeken)
data(eusilc) ; names( eusilc ) <- tolower( names( eusilc ) )
# linearized design
des_eusilc <- svydesign( ids = ~rb030 , strata = ~db040 , weights = ~rb050 , data = eusilc )
des_eusilc <- convey_prep(des_eusilc)
des_eusilc <- update(des_eusilc, pb220a = ordered( pb220a ) )
# replicate-weighted design
des_eusilc_rep <- as.svrepdesign( des_eusilc , type = "bootstrap" )
des_eusilc_rep <- convey_prep(des_eusilc_rep)
# cutoffs
cos <- list( 10000, 5000 )
# variables without missing values
svyafcdec( ~ eqincome + hy050n , ~1 , des_eusilc , k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~1 , des_eusilc_rep , k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~rb090 , des_eusilc , k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~rb090 , des_eusilc_rep , k = .5 , g = 0, cutoffs = cos )
# subsetting:
sub_des_eusilc <- subset( des_eusilc, db040 == "Styria")
sub_des_eusilc_rep <- subset( des_eusilc_rep, db040 == "Styria")
svyafcdec( ~ eqincome + hy050n , ~1 , sub_des_eusilc , k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~1 , sub_des_eusilc_rep , k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~rb090 , sub_des_eusilc ,
k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~rb090 , sub_des_eusilc_rep ,
k = .5 , g = 0, cutoffs = cos )
## Not run:
# including factor variable with missings
cos <- list( 10000, 5000, "EU" )
svyafcdec(~eqincome+hy050n+pb220a, ~1 , des_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = FALSE )
svyafcdec(~eqincome+hy050n+pb220a, ~1 , des_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = TRUE )
svyafcdec(~eqincome+hy050n+pb220a, ~1 , des_eusilc_rep,
k = .5, g = 0, cutoffs = cos , na.rm = FALSE )
svyafcdec(~eqincome+hy050n+pb220a, ~1 , des_eusilc_rep,
k = .5, g = 0, cutoffs = cos , na.rm = TRUE )
svyafcdec(~eqincome+hy050n+pb220a, ~rb090 , des_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = FALSE )
svyafcdec(~eqincome+hy050n+pb220a, ~rb090 , des_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = TRUE )
svyafcdec(~eqincome+hy050n+pb220a, ~rb090 , des_eusilc_rep,
k = .5, g = 0, cutoffs = cos , na.rm = FALSE )
svyafcdec(~eqincome+hy050n+pb220a, ~rb090 , des_eusilc_rep,
k = .5, g = 0, cutoffs = cos , na.rm = TRUE )
# database-backed design
library(RSQLite)
library(DBI)
dbfile <- tempfile()
conn <- dbConnect( RSQLite::SQLite() , dbfile )
dbWriteTable( conn , 'eusilc' , eusilc )
dbd_eusilc <-
svydesign(
ids = ~rb030 ,
strata = ~db040 ,
weights = ~rb050 ,
data="eusilc",
dbname=dbfile,
dbtype="SQLite"
)
dbd_eusilc <- convey_prep( dbd_eusilc )
dbd_eusilc <- update( dbd_eusilc, pb220a = ordered( pb220a ) )
# cutoffs
cos <- list( 10000 , 5000 )
# variables without missing values
svyafcdec( ~eqincome+hy050n , ~1 , des_eusilc ,
k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~eqincome+hy050n , ~rb090 , des_eusilc ,
k = .5 , g = 0, cutoffs = cos )
# subsetting:
sub_des_eusilc <- subset( des_eusilc, db040 == "Styria")
svyafcdec( ~ eqincome + hy050n , ~1 , sub_des_eusilc ,
k = .5 , g = 0, cutoffs = cos )
svyafcdec( ~ eqincome + hy050n , ~rb090 , sub_des_eusilc ,
k = .5 , g = 0, cutoffs = cos )
# including factor variable with missings
cos <- list( 10000, 5000, "EU" )
svyafcdec(~eqincome+hy050n+pb220a, ~1 , dbd_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = FALSE )
svyafcdec(~eqincome+hy050n+pb220a, ~1 , dbd_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = TRUE )
svyafcdec(~eqincome+hy050n+pb220a, ~rb090 , dbd_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = FALSE )
svyafcdec(~eqincome+hy050n+pb220a, ~rb090 , dbd_eusilc,
k = .5, g = 0, cutoffs = cos , na.rm = TRUE )
dbRemoveTable( conn , 'eusilc' )
dbDisconnect( conn , shutdown = TRUE )
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.