Multiple Regression and Dummy Variables

EXAMPLE: Salamanders and oxygen uptake

Ruben and Scott (1989) note a positive correlation between lung volume and head width, due to the mechanism of salamander breathing. Consequently, lunged salamanders with relatively wider heads tend to absorb a smaller proportion of their oxygen cutaneously. Many salamanders have no lungs, however, and among them head size appears unrelated to cutaneous oxygen uptake.

TOPICS:

SAS commands and data

data sasuser.sal;
input IndLung OXY WIDTH;
LxW = IndLung*WIDTH;
datalines;
 0         81                .13
 0         84                .13
 0         76                .16
 0         86                .19
 1         45                .23
 1         49                .23
 1         64                .17
 1         65                .16
 1         69                .16
 1         74                .14
run;
HANDOUTS:
  1. Scatter plot of Oxygen Uptake and Head Width (www only)
  2. Full Model
  3. Width Only Model
  4. LxW Only Model
  5. Final Model