@@ -464,7 +464,7 @@ glue("sacr_RMSPE", "{0:,.0f}".format(RMSPE))
464
464
465
465
Our final model's test error as assessed by RMSPE
466
466
is {glue: text }` sacr_RMSPE ` .
467
- Remember that this is in units of the target/ response variable, and here that
467
+ Remember that this is in units of the response variable, and here that
468
468
is US Dollars (USD). Does this mean our model is "good" at predicting house
469
469
sale price based off of the predictor of home size? Again, answering this is
470
470
tricky and requires knowledge of how you intend to use the prediction.
@@ -645,7 +645,7 @@ flexible and can be quite wiggly. But there is a major interpretability advantag
645
645
model to a straight line. A
646
646
straight line can be defined by two numbers, the
647
647
vertical intercept and the slope. The intercept tells us what the prediction is when
648
- all of the predictors are equal to 0; and the slope tells us what unit increase in the target/ response
648
+ all of the predictors are equal to 0; and the slope tells us what unit increase in the response
649
649
variable we predict given a unit increase in the predictor
650
650
variable. KNN regression, as simple as it is to implement and understand, has no such
651
651
interpretability from its wiggly line.
@@ -654,7 +654,7 @@ interpretability from its wiggly line.
654
654
```
655
655
656
656
There can, however, also be a disadvantage to using a simple linear regression
657
- model in some cases, particularly when the relationship between the target and
657
+ model in some cases, particularly when the relationship between the response variable and
658
658
the predictor is not linear, but instead some other shape (e.g., curved or oscillating). In
659
659
these cases the prediction model from a simple linear regression
660
660
will underfit (have high bias), meaning that model/predicted values do not
@@ -1324,7 +1324,7 @@ predictive performance.
1324
1324
1325
1325
So far in this textbook we have used regression only in the context of
1326
1326
prediction. However, regression can also be seen as a method to understand and
1327
- quantify the effects of individual variables on a response / outcome of interest.
1327
+ quantify the effects of individual variables on a response variable of interest.
1328
1328
In the housing example from this chapter, beyond just using past data
1329
1329
to predict future sale prices,
1330
1330
we might also be interested in describing the
0 commit comments