Skip to content

Commit

Permalink
inline modeltime::modeltime_calibrate()
Browse files Browse the repository at this point in the history
  • Loading branch information
olivroy committed Oct 2, 2023
1 parent f541fe3 commit 63aefa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/TK03_Forecasting_Using_Time_Series_Signature.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ model_table

## Calibration

__Model Calibration__ is used to quantify error and estimate confidence intervals. We'll perform model calibration on the out-of-sample data (aka. the Testing Set) with the `modeltime_calibrate()` function. Two new columns are generated (".type" and ".calibration_data"), the most important of which is the ".calibration_data". This includes the actual values, fitted values, and residuals for the testing set.
__Model Calibration__ is used to quantify error and estimate confidence intervals. We'll perform model calibration on the out-of-sample data (aka. the Testing Set) with the `modeltime::modeltime_calibrate()` function. Two new columns are generated (".type" and ".calibration_data"), the most important of which is the ".calibration_data". This includes the actual values, fitted values, and residuals for the testing set.

```{r, paged.print = F, eval=rlang::is_installed("modeltime")}
calibration_table <- model_table %>%
modeltime_calibrate(testing(splits))
modeltime::modeltime_calibrate(testing(splits))
calibration_table
```
Expand Down

0 comments on commit 63aefa9

Please sign in to comment.