Skip to contents

Create older people indicators for severe food insecurity from survey data collected using the standard RAM-OP questionnaire

Usage

create_op_hunger(svy)

Arguments

svy

A dataframe collected using the standard RAM-OP questionnaire

Value

A dataframe of older people indicators on household hunger

Household Hunger Scale (HHS)

The HHS is described in:

Ballard T, Coates J, Swindale A, Deitchler M (2011). Household Hunger Scale: Indicator Definition and Measurement Guide. Washington DC, FANTA-2 Bridge, FHI 360 https://www.fantaproject.org/monitoring-and-evaluation/household-hunger-scale-hhs

HHS1

Little or no hunger in household

HHS2

Moderate hunger in household

HHS3

Severe hunger in household

Author

Mark Myatt

Examples

# Create household hunger indicators dataset from RAM-OP survey data
# collected from Addis Ababa, Ethiopia
create_op_hunger(testSVY)
#> # A tibble: 192 × 6
#>      psu  sex1  sex2  HHS1  HHS2  HHS3
#>    <int> <dbl> <dbl> <dbl> <dbl> <dbl>
#>  1   201     0     1     1     0     0
#>  2   201     1     0     1     0     0
#>  3   201     1     0     1     0     0
#>  4   201     0     1     1     0     0
#>  5   201     0     1     1     0     0
#>  6   201     1     0     0     1     0
#>  7   201     1     0     1     0     0
#>  8   201     0     1     1     0     0
#>  9   201     1     0     0     0     1
#> 10   201     0     1     0     0     0
#> # ℹ 182 more rows