bfan {mpae} | R Documentation |
Above normal body fat data
Description
Modification of the bodyfat
dataset for classification.
The response bfan
is a factor indicating a body fat value above the normal
range.
The variable bodyfat
was dropped for convenience, and two new variables
bmi
(body mass index, in kg/m^2) and bmi2
(alternate body mass index,
in kg^1.2/m^3.3) were computed (see examples below).
Usage
bfan
Format
A data frame with 246 rows and 16 columns:
- bfan
Body fat above normal range
- age
Age (years)
- weight
Weight (kg)
- height
Height (cm)
- neck
Neck circumference (cm)
- chest
Chest circumference (cm)
- abdomen
Abdomen circumference (cm)
- hip
Hip circumference (cm)
- thigh
Thigh circumference (cm)
- knee
Knee circumference (cm)
- ankle
Ankle circumference (cm)
- biceps
Biceps (extended) circumference (cm)
- forearm
Forearm circumference (cm)
- wrist
Wrist circumference (cm)
- bmi
Body mass index (kg/m2)
- bmi2
Alternate body mass index
Details
See bodyfat
and bodyfat.raw
for details.
Source
StatLib Datasets Archive: https://lib.stat.cmu.edu/datasets/bodyfat.
References
Penrose, K., Nelson, A. and Fisher, A. (1985). Generalized Body Composition Prediction Equation for Men Using Simple Measurement Techniques. Medicine and Science in Sports and Exercise, 17(2), 189. doi:10.1249/00005768-198504000-00037.
See Also
Examples
bfan <- bodyfat
# Body fat above normal
bfan[1] <- factor(bfan$bodyfat > 24 , # levels = c('FALSE', 'TRUE'),
labels = c('No', 'Yes'))
names(bfan)[1] <- "bfan"
bfan$bmi <- with(bfan, weight/(height/100)^2)
bfan$bmi2 <- with(bfan, weight^1.2/(height/100)^3.3)
fit <- glm(bfan ~ abdomen, family = binomial, data = bfan)
summary(fit)