Goto Lab: #0 #1 #2

Lab 2

Due Thurs 16 Sept in class


Case study: Radioactivity and Infant Mortality


E. J. Sternglass in 1969 attributed a slowdown in the decrease in infant mortality rates in the US to increased radiation exposure from nuclear weapons testing. He estimated around 400,000 "excess deaths" between 1945 and 1962 were due to this increased exposure.

Sternglass's hypothesis was later examined by Victor Fuchs of Stanford university in 1979/80. This case study in exploratory analysis will use Fuchs's data to examine the Sternglass hypothesis.

The file has 528 observations, each of one corresponding to one row of the file. The first 48 observations are for each one of the continental states and the year 1960, the next 48 are for the same states (ordered in the same way) but for 1961, and so on until 1970. The variables are, from the first to the last column, total infant mortality (TIM), neonatal infant mortality (NIM), postnatal infant mortality (PIM), percent non-white births (NWBR), per capita income (INC), strontium-90 content of milk (SR90), caresium-137 content of milk, number of births (NB), state (STATE), and year (YEAR).

mort.asc

TIM NIM PIM NWBR INC SR90 CS137 NB STATE YEAR

The question of interest here is:
Does exposure to low-level radiation cause an increase in infant mortality?
Some points to think about are:



Assignment:

You'll be making most of the plots that were shown in class. I realize some may still be fighting with Splus, but stay with it. Here are the plots you'll be turning in:

  1. Histogram of SR90
  2. Histogram of log SR90
  3. TIM vs INC
  4. TIM vs log(NWBR)
  5. TIM vs log(SR90)
  6. TIM vs log(SR90 lagged 1) This year's TIM vs last year's log SR(90)
  7. INC 1963 - INC 1960 vs INC 1960
  8. TIM 1963 - TIM 1960 vs SR90 1963 - SR90 1960
  9. TIM vs year for the 48 states (in just one graph)
  10. SR90 vs year for the 48 states (in just one graph)
Graphs 1-4 on a single page of 4 plots; same with plots 5-8; plots 9-10 on a single page of 2 plots. So you can tell Splus to place 4 plots on each page using:
> par(mfrow=c(2,2))
Here are some hints: Good luck!