* SAS code for LS regression; options linesize=70; data PCBlevel; input age pcb @@; cards; 3 1.5 9 9.1 13 5.8 21 17.6 32 15.1 proc reg; model pcb = age; run;