File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -666,7 +666,7 @@ sacr_preds <- sacr_fit |>
666
666
predict(sqft_prediction_grid) |>
667
667
bind_cols(sqft_prediction_grid)
668
668
669
- plot_final <- ggplot(sacramento_train , aes(x = sqft, y = price)) +
669
+ plot_final <- ggplot(sacramento , aes(x = sqft, y = price)) +
670
670
geom_point(alpha = 0.4) +
671
671
geom_line(data = sacr_preds,
672
672
mapping = aes(x = sqft, y = .pred),
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ sacr_preds <- lm_fit |>
312
312
predict(sqft_prediction_grid) |>
313
313
bind_cols(sqft_prediction_grid)
314
314
315
- lm_plot_final <- ggplot(sacramento_train , aes(x = sqft, y = price)) +
315
+ lm_plot_final <- ggplot(sacramento , aes(x = sqft, y = price)) +
316
316
geom_point(alpha = 0.4) +
317
317
geom_line(data = sacr_preds,
318
318
mapping = aes(x = sqft, y = .pred),
You can’t perform that action at this time.
0 commit comments