@@ -7,6 +7,8 @@ vignette: >
77 %\VignetteEncoding{UTF-8}
88---
99
10+ # Introduction
11+
1012``` {r, include = FALSE}
1113source(here::here("vignettes/_common.R"))
1214```
@@ -61,16 +63,16 @@ components:
6163 ` step ` ] ( https://recipes.tidymodels.org/reference/index.html )
6264 * _ Trainer_ : train a model on data, resulting in a fitted model object.
6365 Examples include linear regression, quantile regression, or [ any ` {parsnip} `
64- engine] ( https://parsnip .tidymodels.org/reference/index.html ) .
66+ engine] ( https://www .tidymodels.org/find/parsnip/ ) .
6567 * _ Postprocessor_ : unique to ` {epipredict} ` ; used to transform the
6668 predictions after the model has been fit, such as
6769 - generating quantiles from purely point-prediction models,
6870 - reverting operations done in the ` step ` s, such as converting from
6971 rates back to counts
7072 - generally adapting the format of the prediction to its eventual use.
7173
72- The rest of the "getting started " vignette will focus on using and modifying the canned forecasters.
73- Check out the [ "guts" vignette] ( preprocessing-and-models ) for examples of using the forecaster
74+ The rest of this "Get Started " vignette will focus on using and modifying the canned forecasters.
75+ Check out the [ Custom Epiworkflows vignette] ( preprocessing-and-models ) for examples of using the forecaster
7476framework to make more complex, custom forecasters.
7577
7678If you are interested in time series in a non-panel data context, you may also
@@ -188,7 +190,7 @@ hardhat::extract_fit_engine(two_week_ahead$epi_workflow)
188190
189191See the function documentation for ` arx_args_list() ` for more examples of the modifications available.
190192If you want to make further modifications, you will need a custom
191- workflow; see the [ "guts" vignette] ( custom_epiworkflows ) for details.
193+ workflow; see the [ Custom Epiworkflows vignette] ( custom_epiworkflows ) for details.
192194
193195## Generating multiple aheads
194196Frequently, one doesn't want just a forecast for a single day, but a trajectory
@@ -436,7 +438,7 @@ An `epi_workflow()` consists of 3 parts:
436438 5 of as these well. You can inspect the layers more closely by running
437439 ` epipredict::extract_layers(four_week_ahead$epi_workflow) ` .
438440
439- See the [ "guts" vignette] ( custom_epiworkflows ) for recreating and then
441+ See the [ Custom Epiworkflows vignette] ( custom_epiworkflows ) for recreating and then
440442extending ` four_week_ahead ` using the custom forecaster framework.
441443
442444## Mathematical description
0 commit comments