Skip to contents

Create older people indicators dataframe for miscellaneous indicators from survey data collected using the standard RAM-OP questionnaire.

Usage

create_op_misc(svy)

Arguments

svy

A dataframe collected using the standard RAM-OP questionnaire

Value

A tibble of older people miscellaneous indicators

Miscellaneous indicators

chew

Problems chewing food

food

Anyone in HH receives a ration

NFRI

Anyone in HH received non-food relief item(s) in previous month

Author

Mark Myatt

Examples


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