Description Usage Format Details Source References Examples
The fertility of women (see Details) per district is to be modelled as a function of socio-economic variables.
1 2 |
d.birthrates is
a data frame with 182 observations on the following 25 variables.
fertTotalIndex of total fertility
infantMortInfant Mortality Rate
catholicpercent Catholic
single24percent women aged 20-24 who are single
single49percent women aged 45-49 who are single
eAgricProportion male labor force in agriculture
eIndustryProportion male labor force in industry
eCommerceProportion male labor force in trade
eTransportProportion male labor force in transportation
eAdminProportion male labor force in public service
germanpercent German
frenchpercent French
italianpercent Italian
romanshpercent Romansh
gradeHighProp. high grade in draftees exam
gradeLowProp. low grade in draftees exma
educHighProp. draftees with > primary educ.
bornLocalProportion living in commune of birth
bornForeignProportion born in foreign country
sexratioSex ratio (M/F)
cantonCanton Name
districtDistrict Name
altitudealtitude in three categories: low, medium, high
languagedominating language: german, french, italian, romansh
d.birthratesVars contains these descriptions.
Exact definition of fertility: fertility = 100 * B_l/ sum m_i f_i where B_l = annual legitimate births, m_i = the number of married women in age interval i, and f_i = the fertility Hutterite women in the same age interval. Stillbirths are included. "Hutterite women" are women in a population that is known to be extremely fertile.
https://opr.princeton.edu/archive/pefp/switz.aspx
Van der Walle, Francine (1980). "Education and the Demographic Transition in Switzerland." Population and Development Review, vol. 6, no. 3.
1 2 3 4 5 6 7 8 | data(d.birthrates)
plot(fertility ~ eAgric, data=d.birthrates)
r.lm <- lm(fertility ~ catholic + single24 + single49 +
eAgric + eIndustry + eCommerce + eTransport + eAdmin +
german + french + italian + romansh + gradeHigh + gradeLow +
educHigh + bornLocal + bornForeign + sexratio, data=d.birthrates)
r.st <- step(r.lm, k=4, trace=FALSE)
summary(r.st)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.