| BMI {wec} | R Documentation |
Data on BMI of Dutch citizens
Description
The BMI data contains information on Dutch individuals' BMI, in addition to select socio-demographic variables.
Format
A data frame with 3323 observations on the following 6 variables.
sexa factor with levels
maleandfemaleeducationa factor with levels
lowest,middle, andhighestyeara factor with levels
2000,2005, and2011BMIinterval variable representing respondents' Body Mass Index (BMI)
childlessa factor with levels
noandyeslog_ageinterval variable representing the natural log of respondents' age
age_categoricala factor with levels
Young (18-30),Middle (31-59)andOlder (60-70)
Source
These data are a subset from three waves of the ‘Socio-Cultural Developments in the Netherlands’ (SOCON) datasets, collected at the Radboud University in the Netherlands (see references for original codebooks).
References
Eisinga, R., G., Kraaykamp, P. Scheepers, P. Thijs (2012). Religion in Dutch society 2011-2012. Documentation of a national survey on religious and secular attitudes and behaviour in 2011-2012, DANS Data Guide 11, The Hague: DANS/Pallas Publications Amsterdam University Press, 184p.
Eisinga, R., A. Need, M. Coenders, N.D. de Graaf, M. Lubbers, P. Scheepers, M. Levels, P. Thijs (2012). Religion in Dutch society 2005. Documentation of a national survey on religious and secular attitudes and behaviour in 2005, DANS Data Guide 10, The Hague: DANS/Pallas Publications Amsterdam University Press, 246p.
Eisinga, R., M. Coenders, A. Felling, M. te Grotenhuis, S. Oomens, P. Scheepers (2002). Religion in Dutch society 2000. Documentation of a national survey on religious and secular attitudes in 2000, Amsterdam: NIWI-Steinmetz Archive, 374p.
Examples
data(BMI)
# Without Controls
model.dummy <- lm(BMI ~ education, data=BMI)
summary(model.dummy)
# With Controls
model.dummy.controls <- lm(BMI ~ education + sex + log_age + childless + year, data=BMI)
summary(model.dummy.controls)