Part 1. The susceptibility of catfish to a certain chemical was determined by immersing individual fish in 2 liters of an emulsion containing the pollutant and measuring the survival time in minutes. Fit a straight line regression using $\log$ base 10 of survival time $(Y)$ as the dependent variable, and $\log$ base 10 of the concentration as $X$ (measured in parts per million). The datafile already contains the transformed data. Does the straight line model seem appropriate? Carry out a formal lack of fit test to see if we should reject the straight line model.
Part 2: Carry out the regressions and analyses to answer questions 1-9 on pages 102-103 in RWG. Briefly summarize your conclusions about what you think is the "best model" and what it implies for estimating the number of damaged trees.
Suggestions for Part 2.
LOCELEV = ELEV*LOC;This is for the regression with the slope dummy variable in problem 6. Note: You could also do this within SAS INSIGHT later.
Pull down the menu: Edit-> Windows-> Tools Click on the "Circle" button in the Tools Window. A "Mark Observation" window will appear. To make all of the South datapoints appear as Circles, highlight LOC, =, 0, and press OK.
(You can change the symbol for the north points also (by default they will be squares). To change colors, click on a color, and repeat the same steps you just did.
proc reg data=sasuser.rwg102; model DAMAGE = LOC ELEV / cli clm; run;The output will show up in the SAS Output Window.
Var(Yhat Loc = North ELEV = 1500) = [C(Se^2*(X'X)^-1) C'] = CSC'to get the SE, just take the square root with your calculator.
Read Appendix 3 for more on Matrix multiplication. We will discuss this in class, so be prepared.