Skip to contents

Check missing anthropometry data

Usage

check_missing_data(df)

Arguments

df

A data.frame with information on age, sex, oedema status, and MUAC of each child that has been processed using process_muac_data()

Value

A tibble summarising number and percent missing data for age, sex, oedema status, and MUAC for the given df

Examples

check_missing_data(muac_data)
#> # A tibble: 1 × 8
#>   n_missing_sex p_missing_sex n_missing_age p_missing_age n_missing_muac
#>           <int>         <dbl>         <int>         <dbl>          <int>
#> 1             0             0             0             0              0
#> # ℹ 3 more variables: p_missing_muac <dbl>, n_missing_oedema <int>,
#> #   p_missing_oedema <dbl>