Question

Data for two variables, x and y, follow. xi 22 24 25 28 41 yi 12...

Data for two variables, x and y, follow.

xi 22 24 25 28 41
yi 12 23 31 36 69

a. Develop the estimated regression equation for these data (to 2 decimals). Enter negative value as negative number.

y=-43.71+2.78x

b. Compute the standardized residuals for these data (to 2 decimals). Enter negative value as negative number.

xi yi Standardized
Residual
22 12
24 23 -0.02
25 31 1.31
28 36
41 69

c. Compute the leverage values for these data (to 2 decimals).

xi yi hi
22 12
24 23
25 31
28 36
41 69

With only five points it is difficult to determine if the model assumptions are violated.

d. Compute Cook’s distance measure for these data (to 2 decimals).

xi yi di
22 12
24 23
25 31
28 36
41 69

How many observations influential?

We conclude that the ____ th observation is influential.

Homework Answers

Answer #1

a.

b. -1.51, -0.02, 1.30, 0.44, -1.18

c. 0.36, 0.27, 0.24, 0.20, 0.93

d.  26.71, 0.00, 10.97 , 1.00, 366.70

3 observations are influencial (since if D>1 we consider this observation is influential)

First, 3rd and 5th observations are influential.

R code:

x=c(22,24,25,28,41)
y=c(12,23,31,36,69)
Model=lm(y~x)
Model #a
round(rstandard(Model),2)#b
X=cbind(rep(1,5),x)
H=X%*%solve(t(X)%*%X)%*%t(X)
h=round(diag(H),2)
h#c
e=y-(-43.713+2.783*x)
r=1:5*0
D=r
for(i in 1:5)
{
r[i]=e[i]/sqrt(1-h[i])
D[i]=(r[i])^2*(h[i]/(1-h[i]))
}
round(D,2) #d

Know the answer?
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
Similar Questions
Given are data for two variables, x and y. xi 6 11 15 18 20 yi...
Given are data for two variables, x and y. xi 6 11 15 18 20 yi 7 7 13 21 30 (a) Develop an estimated regression equation for these data. (Round your numerical values to two decimal places.) ŷ = (b)Compute the residuals. (Round your answers to two decimal places.) xi yi Residuals 6 7 11 7 15 13 18 21 20 30 (c)Compute the standardized residuals. (Round your answers to two decimal places.) xi yi Standardized Residuals 6 7...
Consider the following data for two variables, x and y. xi 4 5 7 8 10...
Consider the following data for two variables, x and y. xi 4 5 7 8 10 12 12 22 yi 12 14 16 15 18 20 24 19 Use the facts that ̄x= 10, ̄y= 17.25, ˆy= 13.05 +.42x, Σ(xi − ̄x)^2= 226, and s= 5.58. Compute the leverage values for these data. Do there appear to be any influential observations in these data? Explain.
Data for two variables, x and y, follow. xi 1   2   3   4   5 yi 5  ...
Data for two variables, x and y, follow. xi 1   2   3   4   5 yi 5   9   7   13   16 (a) Develop the estimated regression equation for these data. (Round your numerical values to two decimal places.) ŷ = 2.20+2.60x Compute the studentized deleted residuals for these data. (Round your answers to two decimal places.) xi yi Studentized Deleted Residual 1 5 2 9 3 7 4 13 5 16
Five observations taken for two variables follow. xi 4 6 12 4 15 yi 50 50...
Five observations taken for two variables follow. xi 4 6 12 4 15 yi 50 50 40 50 20 compute the sample correlation coefficient (to 3 decimals). What can you conclude, based on your computation of the sample correlation coefficient? There is a strong positive linear relationship There is a moderate positive linear relationship There is neither a positive nor a negative linear relationship There is a strong negative linear relationship There is a moderate negative linear relationship
Given are five observations for two variables, x and y . xi 1 2 3 4...
Given are five observations for two variables, x and y . xi 1 2 3 4 5 yi 53 58 47 21 11 Use the estimated regression equation is y-hat = 78.01 - 3.08x A.) Compute the mean square error using equation. s^2 = MSE = SSE / n -2 [     ]   (to 2 decimals) B.) Compute the standard error of the estimate using equation s = sqrtMSE = sqrt SSE / n - 2 [      ] (to 2 decimals)...
The data is given as follow. Excel File: data14-17.xlsx Xi 2      6          9          13        20 Yi..
The data is given as follow. Excel File: data14-17.xlsx Xi 2      6          9          13        20 Yi 7      18        9          26        23 The estimated regression equation for these data is y= 7.6+.9x. Compute SSE, SST, and SSR (to 1 decimal). SSE SST SSR What percentage of the total sum of squares can be accounted for by the estimated regression equation (to 1 decimal)? ---------% What is the value of the sample correlation coefficient (to 3 decimals)? ----------
With data series: (20, 22, 30, 23, 28, 25, 24, 25, 23, 21, 23) Construct a...
With data series: (20, 22, 30, 23, 28, 25, 24, 25, 23, 21, 23) Construct a Box Diagram.
A statistical program is recommended. Consider the following data for two variables, x and y. xi...
A statistical program is recommended. Consider the following data for two variables, x and y. xi 135 110 130 145 175 160 120 yi 145 105 120 115 130 130 110 (a) Compute the standardized residuals for these data. (Round your answers to two decimal places.) xi yi Standardized Residuals 135 145 110 105 130 120 145 115 175 130 160 130 120 110 Do the data include any outliers? Explain. (Round your answers to two decimal places.) The standardized...
Given are five observations for two variables, x and y. xi 1 2 3 4 5...
Given are five observations for two variables, x and y. xi 1 2 3 4 5 yi 4 7 6 12 15 The estimated regression equation is ? = 0.7 + 2.7x. Compute the mean square error using the following equation (to 3 decimals). Compute the standard error of the estimate using the following equation (to 3 decimals). Compute the estimated standard deviation b1 using the following equation (to 3 decimals). Use the t test to test the following hypotheses...
x y 23 28 17 20 8 2 29 22 12 18 Use the sample data...
x y 23 28 17 20 8 2 29 22 12 18 Use the sample data above to answer the following question.  (See exercise 56 on page 160 of your textbook for a similar problem.) Compute the correlation.