Question

I use R to perform the F-test, and got the value below. So, which model is...

I use R to perform the F-test, and got the value below. So, which model is better and how to interpreted the regression model?

Model 1: ELEVATION ~ RIVER + I(caliX^1 * caliY^0) + I(caliX^0 * caliY^1) +
I(caliX^2 * caliY^0) + I(caliX^1 * caliY^1) + I(caliX^0 *
caliY^2)
Model 2: ELEVATION ~ RIVER + I(caliX^1 * caliY^0) + I(caliX^0 * caliY^1) +
I(caliX^2 * caliY^0) + I(caliX^1 * caliY^1) + I(caliX^0 *
caliY^2) + I(caliX^3 * caliY^0) + I(caliX^2 * caliY^1) +
I(caliX^1 * caliY^2) + I(caliX^0 * caliY^3)
Res.Df RSS Df Sum of Sq F Pr(>F)   
1 93 51353
2 89 42840 4 8512.9 4.4214 0.002632 **
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Homework Answers

Answer #1

For Model 1 :

Residual Degrees of freedom = 93 This is degrees of freedom for Error.

Residual Sum of square = Error sum of square =  51353

As model is not significant none of the other coefficients are present.

For Model 2 :

Residual Degrees of freedom = 89 This is degrees of freedom for Error.

Residual Sum of square = Error sum of square =  42840

Df is degrees of freedom of regression terms = 4

Sum of Sq = Regression sum of square = 8512.9

F statistic =  4.4214

p-value for this model = 0.002632 Which significant at 5% level of significance.

So we can say that 2nd model is significant and better than 1st model.

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
Researchers wanted to test the efficacy of 6 different insect sprays in agricultural land. To this...
Researchers wanted to test the efficacy of 6 different insect sprays in agricultural land. To this end, 72 plots are available for the study. Each spray is randomly spread on 12 plots. After some time, they count the number of insects found in each plot. a. [3] We run an ANOVA test (see table below). What can you conclude? Be specific (give the hypotheses).             Df Sum Sq Mean Sq F value Pr(>F) spray 5 2669 533.8 34.7 <2e-16 *** Residuals...
R Linear Model Summary. Based on the R output below, answer the following: (a) What can...
R Linear Model Summary. Based on the R output below, answer the following: (a) What can infer about β0 and/or β1 ? (b) What is the interpretation of R2 . (Non-Adjusted) ? In particular, what does it say about how “x explains y” (c) Perform the test (α = 0.05): H0 : ρ = 0.5; Ha : ρ > 0.5 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 0.32632 0.24979 1.306 0.194 x 0.09521 0.01022 9.313 2.93e-15 *** --- Signif....
8.) Now, do a simple linear regression model for LifeExpect2017 vs. AverageDailyPM2.5. For credit, provide the...
8.) Now, do a simple linear regression model for LifeExpect2017 vs. AverageDailyPM2.5. For credit, provide the summary output for this simple linear regression model. > Model2 <- lm(LifeExpect2017~ AverageDailyPM2.5) > summary(Model2) Call: lm(formula = LifeExpect2017 ~ AverageDailyPM2.5) Residuals: Min 1Q Median 3Q Max -17.1094 -1.7516 0.0592 1.7208 18.4604 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 81.6278 0.2479 329.23 <2e-16 *** AverageDailyPM2.5 -0.4615 0.0267 -17.29 <2e-16 *** --- Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘...
We like to see the effect of design (design A, B, C and D) on customer...
We like to see the effect of design (design A, B, C and D) on customer ratings with 0.05 alpha. We have following outputs of ANOVA test. Df Sum Sq Mean Sq F value Pr(>F)    golf$design 3 2991.0 997.0 53.03 0.00045 *** Residuals 36 676.8 18.8 Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 Which one is the correct statement? a. Since p-value is less than 0.05, reject H0. Thus, there is no...
Consider the following regression run in R, which uses engine size in liters, horsepower, weight, and...
Consider the following regression run in R, which uses engine size in liters, horsepower, weight, and domestic vs foreign manufacturer to predict mileage: ------------------------------------------------------------------------------------------------------ > summary(lm(highwaympg~displacement+hp+weight+domestic)) Call: lm(formula = highwaympg ~ displacement + hp + weight + domestic) Residuals:     Min      1Q  Median      3Q     Max -6.9530 -1.6997 -0.1708 1.6452 11.4028 Coefficients:               Estimate Std. Error t value Pr(>|t|)    (Intercept) 53.849794   2.090657 25.757 < 2e-16 *** displacement 1.460873   0.748837   1.951   0.0543 . hp           -0.009802   0.011356 -0.863   0.3904    weight       -0.008700   0.001094 -7.951 6.23e-12 *** domestic     -0.939918   0.762175 -1.233   0.2208    ---...
Using the following data taking out of R (summary): Call: lm(formula = dys_detect ~ fin_loss, data...
Using the following data taking out of R (summary): Call: lm(formula = dys_detect ~ fin_loss, data = Lab5, na.action = na.exclude) Residuals: Min 1Q Median 3Q Max -582.66 -274.75 13.53 273.92 589.06 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 385.362 77.360 4.981 8.72e-07 *** fin_loss 3.248 1.523 2.133 0.0334 * --- Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 Residual standard error: 316.6 on 498 degrees of freedom Multiple R-squared: 0.009052,   Adjusted R-squared:...
Analysis of Variance Table Df Sum Sq Mean Sq F value Pr(>F) plastic 1 239735 239735...
Analysis of Variance Table Df Sum Sq Mean Sq F value Pr(>F) plastic 1 239735 239735 241.8709 2.31e-14 paper 1 11239 11239 11.3392 0.00245 garbage 1 2888 2888 2.9136 0.10023 moisture 1 411069 411069 414.7313 2.20e-16 Residuals 25 24779 991 (a)Please calculate the MSreg and MSres. Derive the F statistic (F=MSreg/MSres) (b) Use the F statistic to perform the overall F-test. We know that under H0, the sampling distribution of F statistic is an F distribution: F=MSreg/MSres ∼ F(p −...
3.) Now, you are going to run the multivariable linear regression model you just created. For...
3.) Now, you are going to run the multivariable linear regression model you just created. For credit: Provide your model command and summary command below along with all the output for your model summary. Model1 <- lm(LifeExpect2017~HouseholdIncome + Diabetic + FoodInsecure + Uninsured + DrugOverdoseMortalityRate ) > summary(Model1) Call: lm(formula = LifeExpect2017 ~ HouseholdIncome + Diabetic + FoodInsecure + Uninsured + DrugOverdoseMortalityRate) Residuals: Min 1Q Median 3Q Max -5.4550 -0.8559 0.0309 0.8038 7.1801 Coefficients: Estimate Std. Error t value Pr(>|t|)...
4.-Interpret the following regression model Call: lm(formula = log(Sale.Price) ~ Lot.Size + Square.Feet + Num.Baths +...
4.-Interpret the following regression model Call: lm(formula = log(Sale.Price) ~ Lot.Size + Square.Feet + Num.Baths + dis_coast + API.2011 + dis_fwy + dis_down + Pool, data = Training) Residuals: Min 1Q Median 3Q Max -2.17695 -0.23519 -0.00112 0.26471 1.02810 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 9.630e+00 2.017e-01 47.756 < 2e-16 *** Lot.Size -2.107e-06 3.161e-07 -6.666 4.78e-11 *** Square.Feet 2.026e-04 3.021e-05 6.705 3.71e-11 *** Num.Baths 6.406e-02 2.629e-02 2.437 0.015031 * dis_coast -1.827e-05 6.881e-06 -2.655 0.008077 ** API.2011 3.459e-03 2.356e-04...
> muncy = lm(hit_distance~launch_speed, data=muncy) > summary(muncy) Call: lm(formula = hit_distance ~ launch_speed, data = muncy)...
> muncy = lm(hit_distance~launch_speed, data=muncy) > summary(muncy) Call: lm(formula = hit_distance ~ launch_speed, data = muncy) Residuals:     Min      1Q Median      3Q     Max -258.24 -105.23   23.29 116.06 174.73 Coefficients:               Estimate Std. Error t value Pr(>|t|)    (Intercept) -240.8429    36.6769 -6.567 1.46e-10 *** launch_speed    4.8800     0.4022 12.134 < 2e-16 *** --- Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 122.4 on 438 degrees of freedom Multiple R-squared: 0.2516, Adjusted R-squared: 0.2499 F-statistic:...