|
33 | 33 | #' will be used as predictors in a model. |
34 | 34 | #' @param columns A character string of variables that will be |
35 | 35 | #' used as inputs. This field is a placeholder and will be |
36 | | -#' populated once `recipes::prep()` is used. |
| 36 | +#' populated once [recipes::prep()] is used. |
37 | 37 | #' @param skip A logical. Should the step be skipped when the recipe is |
38 | 38 | #' baked by bake.recipe()? While all operations are baked when prep.recipe() |
39 | 39 | #' is run, some operations may not be able to be conducted on new data |
|
55 | 55 | #' @details |
56 | 56 | #' |
57 | 57 | #' __Smoother Algorithm__ |
58 | | -#' This function is a `recipe` specification that wraps the `stats::loess()` |
| 58 | +#' This function is a `recipe` specification that wraps the [stats::loess()] |
59 | 59 | #' with a modification to set a fixed `period` rather than a percentage of |
60 | 60 | #' data points via a `span`. |
61 | 61 | #' |
|
85 | 85 | #' @seealso |
86 | 86 | #' Time Series Analysis: |
87 | 87 | #' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()] |
88 | | -#' - Diffs & Lags [step_diff()], `recipes::step_lag()` |
| 88 | +#' - Diffs & Lags [step_diff()], [recipes::step_lag()] |
89 | 89 | #' - Smoothing: [step_slidify()], [step_smooth()] |
90 | 90 | #' - Variance Reduction: [step_box_cox()] |
91 | 91 | #' - Imputation: [step_ts_impute()], [step_ts_clean()] |
92 | 92 | #' - Padding: [step_ts_pad()] |
93 | 93 | #' |
94 | 94 | #' Main Recipe Functions: |
95 | | -#' - `recipes::recipe()` |
96 | | -#' - `recipes::prep()` |
97 | | -#' - `recipes::bake()` |
| 95 | +#' - [recipes::recipe()] |
| 96 | +#' - [recipes::prep()] |
| 97 | +#' - [recipes::bake()] |
98 | 98 | #' |
99 | 99 | #' @examples |
100 | 100 | #' library(recipes) |
|
0 commit comments