BMI category labels using CDC classification
BMI value
Breaks defining labeled ranges, intervals are closed on the left
Labels for values between break values including lower bound
bmi_cat, categorical levels of BMI
e_calc_bmi(60, 150) %>% e_calc_bmi_categories()
#> [1] Overweight
#> Levels: Underweight Normal or Healthy Weight Overweight Obese
e_calc_bmi(seq(40, 70, by = 5), 150) %>% e_calc_bmi_categories()
#> [1] Underweight Normal or Healthy Weight Normal or Healthy Weight
#> [4] Normal or Healthy Weight Overweight Overweight
#> [7] Obese
#> Levels: Underweight Normal or Healthy Weight Overweight Obese