Question

Q1 (30 points) Consider Problem 11.45, Page 637. Please note that for this problem the data will be entered in R as follows:

Med. Athletes are constantly seeking measures of the degree of their cardiovascular fitness prior to a major race. Athletes w

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1) we first use scatter plot to visualize their relationship, we saw a positive correlation among them

30 000 25 20 potency 15 10 5 0 10 20 30 40 50 60 dose

2)###model
###potency(estimated)=10.6188+0.3375dose

dose=c(2,2,2,4,4,8,8,16,16,16,32,32,64,64,64)
> dose
[1] 2 2 2 4 4 8 8 16 16 16 32 32 64 64 64
> potency=c(5,7,3,10,14,15,17,20,21,19,23,29,28,31,30)
> potency
[1] 5 7 3 10 14 15 17 20 21 19 23 29 28 31 30
> plot(dose,potency)
> fit=lm(potency~dose)
> fit

Call:
lm(formula = potency ~ dose)

Coefficients:
(Intercept) dose
10.6188 0.3375

> ###model
> ###potency(estimated)=10.6188+0.3375dose
> summary(fit)

Call:
lm(formula = potency ~ dose)

Residuals:
Min 1Q Median 3Q Max
-8.294 -3.217 1.582 3.331 7.582

Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 10.61883 1.68749 6.293 2.78e-05 ***
dose 0.33748 0.05288 6.382 2.41e-05 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 4.682 on 13 degrees of freedom
Multiple R-squared: 0.7581, Adjusted R-squared: 0.7394
F-statistic: 40.73 on 1 and 13 DF, p-value: 2.41e-05

> residuals(fit)
1 2 3 4 5 6 7 8
-6.293781 -4.293781 -8.293781 -1.968737 2.031263 1.681351 3.681351 3.981528
9 10 11 12 13 14 15
4.981528 2.981528 1.581882 7.581882 -4.217411 -1.217411 -2.217411
> predict(fit)
1 2 3 4 5 6 7 8
11.29378 11.29378 11.29378 11.96874 11.96874 13.31865 13.31865 16.01847
9 10 11 12 13 14 15
16.01847 16.01847 21.41812 21.41812 32.21741 32.21741 32.21741
> confint(fit)
2.5 % 97.5 %
(Intercept) 6.9732274 14.2644240
dose 0.2232401 0.4517156
>
> ###############################################
> dose=c(2,2,2,4,4,8,8,16,16,16,32,32,64,64,64)
> dose
[1] 2 2 2 4 4 8 8 16 16 16 32 32 64 64 64
> dosenew=log(dose+1)
> dosenew
[1] 1.098612 1.098612 1.098612 1.609438 1.609438 2.197225 2.197225 2.833213
[9] 2.833213 2.833213 3.496508 3.496508 4.174387 4.174387 4.174387
> plot(dosenew,potency)
> fit1=lm(potency~dosenew)
> fit1

Call:
lm(formula = potency ~ dosenew)

Coefficients:
(Intercept) dosenew
-2.181 7.828

> ###model2
> ###potency(estimated)=-2.181+7.828dosenew
> summary(fit1)

Call:
lm(formula = potency ~ dosenew)

Residuals:
Min 1Q Median 3Q Max
-3.4194 -1.2087 -0.0195 0.7913 3.8095

Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -2.1808 1.4061 -1.551 0.145
dosenew 7.8282 0.4987 15.698 7.87e-10 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 2.131 on 13 degrees of freedom
Multiple R-squared: 0.9499, Adjusted R-squared: 0.946
F-statistic: 246.4 on 1 and 13 DF, p-value: 7.867e-10

> residuals(fit1)
1 2 3 4 5 6
-1.419353837 0.580646163 -3.419353837 -0.418188154 3.581811846 -0.019487262
7 8 9 10 11 12
1.980512738 0.001878959 1.001878959 -0.998121041 -2.190506770 3.809493230
13 14 15
-2.497070331 0.502929669 -0.497070331
> predict(fit1)
1 2 3 4 5 6 7 8
6.419354 6.419354 6.419354 10.418188 10.418188 15.019487 15.019487 19.998121
9 10 11 12 13 14 15
19.998121 19.998121 25.190507 25.190507 30.497070 30.497070 30.497070
> confint(fit1)
2.5 % 97.5 %
(Intercept) -5.218565 0.8570054
dosenew 6.750860 8.9054980

Add a comment
Know the answer?
Add Answer to:
Q1 (30 points) Consider Problem 11.45, Page 637. Please note that for this problem the data...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • thletes are constantly seeking measures of the degree of their cardiovascular fitness prior to the major...

    thletes are constantly seeking measures of the degree of their cardiovascular fitness prior to the major race. Athletes want to know when their training is at a level which will produce a peak performance. One such measure of fitness is the time to exhaustion from running on a treadmill at a specified (?)angle and speed. The important question is then “Does this measure of cardiovascular fitness translates into performance in a 10-km running race?” (?)Twenty experienced distances runners who professed...

  • 2. [-16.5 Points] DETAILS DEVORESTAT9 12.E.021. MY NOTES ASK YOUR TEACHER PRACTICE ANOTHER Wrinkle recovery angle...

    2. [-16.5 Points] DETAILS DEVORESTAT9 12.E.021. MY NOTES ASK YOUR TEACHER PRACTICE ANOTHER Wrinkle recovery angle and tensile strength are the two most important characteristics for evaluating the performance of crosslinked cotton fabric. An increase in the degree of crosslinking, as determined by ester carboxyl band absorbance, improves the wrinkle resistance of the fabric (at the expense of reducing mechanical strength). The accompanying data on x = absorbance and y = wrinkle resistance angle was read from a graph in...

  • Below are given (a) A scatterplot of Y versus X and (b) A plot of residuals...

    Below are given (a) A scatterplot of Y versus X and (b) A plot of residuals versus fitted values after a simple linear regression model was fit to the data. What is the equation of the fitted line? Discuss what is indicated about the relationship between Y and X as it relates to simple linear regression. Fitted Line Plot Y = - 14.64 + 7.431 X R-Sq R-Sq (adj) 2.43700 91.9% 91.8% 1 > 20- 3 4 5 6 7...

  • What does the error term in the simple linear regression model account for? What are the...

    What does the error term in the simple linear regression model account for? What are the parameters of the simple linear model When all the points fall on the regression line, what is the value of the correlation coefficient? Part of an Excel output relating 15 observations of X (independent variable) and Y (dependent variable) is shown below. Provide the values for a-e shown in the table below. (See section 15.5) Summary Output ANOVA df SS MS F Significance F...

  • Moissanite is a popular abrasive material because of its extreme hardness. Another important property of moissanite...

    Moissanite is a popular abrasive material because of its extreme hardness. Another important property of moissanite is elasticity. The elastic properties of the material were investigated in the Journal of Applied Physics (Sept. 1993). A diamond anvil cell was used to compress a mixture of moissanite, sodium chloride, and gold in a ratio of 33:99:1 by volume. The compressed volume, y, of the mixture (relative to the zero-pressure volume) was measured at each of 11 different pressures (GPa). The results...

  • Question 3: The Table below summarises the results of traffic monitoring observations at a motorway, in...

    Question 3: The Table below summarises the results of traffic monitoring observations at a motorway, in terms of average spacing between vehicles versus vehicle speed. cinema9.58 14.04 19,36 22.68 27 31.32 35.64 39.96 4.28 46 52.9257.2461.5665.88 68.270 Space (m) 11.5 15.3 18.8 19.7 22.5 25.4 27.7 32.2 33.8 42 54.5 60.575.1 77.3 81 100.5 (a) The Figure below shows part of the Minitab output for a linear regression analysis for average spacing against speed. Explain the analysis in the table,...

  • I will rate, please help!!! Consider the following data concerning the demand (y) and price (x)...

    I will rate, please help!!! Consider the following data concerning the demand (y) and price (x) of a consumer product. Demand, y Price, x 247 230 $2.06 $2.20 $2.47 $2.67 $2.88 $2.96 253 244 220 235 Type the data into Minitab as two COLUMNS (labeled Y (demand) and X (price)). Create a scatterplot to see the relationship between demand and price (a) From the plot, does it seem reasonable to use the simple linear regression model to relate y to...

  • History Bookmarks Window Help page 6 of Question 4 A real estate developer is interested in...

    History Bookmarks Window Help page 6 of Question 4 A real estate developer is interested in the relationship between the price of houses in Melbourne and their distance to the CBD. Using data collected from real estate agents, he performed the following simple linear regression model: where the dependent variable (Y) is the price of houses (measured in thousands of Australian dollars); the explanatory variable (X) is the distance to the CBD (measured in km);尻and β1 are unknown parameters, and...

  • 4. The anscombe data set in the datasets R package (should automatically be loaded) contains 4 pa...

    4. The anscombe data set in the datasets R package (should automatically be loaded) contains 4 pairs of response-explanatory variables. The pairs are xl-yl, x2-y2, x3-y3, and x4-y4 where x is the explanatory variable and y is the response variable. (a) Run 4 simple linear regression analyses (one on each of the 4 pairs) to verify that the regression output is exactly the same (up to numerical accuracy) b) For each pair, describe what is wrong (if anything) and use...

  • Scatterplot of PracticeTime vs Age 35 30 Practice Time 25 20 15 5.0 7.5 10.0 12.5...

    Scatterplot of PracticeTime vs Age 35 30 Practice Time 25 20 15 5.0 7.5 10.0 12.5 15.0 Age Fitted Line Plot Practice Time = 2.236 + 2.053 Age 35 s R-Sa R-Sqladi) 1.04243 96.7% 96.5% 30 Practice Time 25 20 15 5.0 7.5 10.0 12.5 15.0 Age For children taking piano lessons, we are interested in seeing if there is a relationship between the age of a child (in years) and the amount of time (in minutes) they practice the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT