

   LifeCycleSavings {base}                      R Documentation

   IInntteerrccoouunnttrryy LLiiffee--CCyyccllee SSaavviinnggss DDaattaa

   DDeessccrriippttiioonn::

        Data on the savings ratio 1960-1970.

   UUssaaggee::

        data(LifeCycleSavings)

   FFoorrmmaatt::

        A data frame with 50 observations on 5 variables.

         [,1]      sr        numeric      aggregate personal savings
         [,2]      pop15     numeric      % of population under 15
         [,3]      pop75     numeric      % of population over 75
         [,4]      dpi       numeric      real per-capita disposable income
         [,5]      ddpi      numeric      % growth rate of dpi

   DDeettaaiillss::

        Under the life-cycle savings hypothesis as developed by
        Franco Modigliani, the savings ratio (aggregate per-
        sonal saving divided by disposable income) is explained
        by per-capita disposable income, the percentage rate of
        change in per-capita disposable income, and two demo-
        graphic variables: the percentage of population less
        than 15 years old and the percentage of the population
        over 75 years old.  The data are averaged over the
        decade 1960-1970 to remove the business cycle or other
        short-term fluctuations.

   SSoouurrccee::

        The data were obtained from Belsley, Kuh and Welsch
        (1980).  They in turn obtained the data from Sterling
        (1977).

   RReeffeerreenncceess::

        Sterling, Arnie (1977). Unpublished BS Thesis.  Mas-
        sachusetts Institute of Technology.

        Belsley, D. A., E. Kuh and R. E. Welsch (1980).
        Regression Diagnostics.  New York: Wiley.

   EExxaammpplleess::

        data(LifeCycleSavings)
        pairs(LifeCycleSavings, panel = panel.smooth,
              main = "LifeCycleSavings data")
        fm1 <- lm(sr ~ pop15 + pop75 + dpi + ddpi, data = LifeCycleSavings)
        summary(fm1)

