Skip to contents

Calculates Baseline Body Mass Index based on Weight and Height

Usage

bbmi(weight, height)

Arguments

weight

weight of subject (kg)

height

height of subject (cm)

Value

the bBMI value (kg m^(-2))

Examples

b <- bbmi(80.56, 167)

df <- data.frame(
"WT" = c(80.56, 71.53, 81.04, 70.17),
"HT" = c(167, 161, 163, 164)
)
df <- dplyr::mutate(df, bbmi = bbmi(WT, HT))