Skip to content

Commit c9514f8

Browse files
committed
CRAN: Fix links package::function
1 parent 54ad54a commit c9514f8

26 files changed

+135
-135
lines changed

R/lubridate-date_parsers.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' @param tz Datetime only. A timezone (see `OlsenNames()`).
99
#' @param tz_shift Datetime only. If FALSE, forces the datetime into the time zone.
1010
#' If TRUE, offsets the datetime from UTC to the new time zone.
11-
#' @param ... Additional parameters passed to [anytime()] and [`anydate()`]
11+
#' @param ... Additional parameters passed to [anytime::anytime()] and [anytime::anydate()]
1212
#' @param silent If `TRUE`, warns the user of parsing failures.
1313
#'
1414
#' @return
@@ -31,7 +31,7 @@
3131
#' shifts datetimes to the specified timezone by default.
3232
#'
3333
#' @references
34-
#' - This function wraps the `anytime::anytime()` and `anytime::anydate()` functions developed by Dirk Eddelbuettel.
34+
#' - This function wraps the [anytime::anytime()] and [anytime::anydate()] functions developed by Dirk Eddelbuettel.
3535
#'
3636
#' @examples
3737
#'

R/recipes-step_box_cox.R

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#'
1010
#' @param recipe A `recipe` object. The step will be added to the sequence of operations for this recipe.
1111
#' @param ... One or more selector functions to choose which
12-
#' variables are affected by the step. See [selections()]
12+
#' variables are affected by the step. See [recipes::selections()]
1313
#' for more details. For the `tidy` method, these are not
1414
#' currently used.
1515
#' @param method One of "guerrero" or "loglik"
@@ -79,20 +79,20 @@
7979
#'
8080
#' Time Series Analysis:
8181
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
82-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
82+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
8383
#' - Smoothing: [step_slidify()], [step_smooth()]
8484
#' - Variance Reduction: [step_box_cox()]
8585
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
8686
#' - Padding: [step_ts_pad()]
8787
#'
8888
#' Transformations to reduce variance:
89-
#' - `recipes::step_log()` - Log transformation
90-
#' - `recipes::step_sqrt()` - Square-Root Power Transformation
89+
#' - [recipes::step_log()] - Log transformation
90+
#' - [recipes::step_sqrt()] - Square-Root Power Transformation
9191
#'
9292
#' Recipe Setup and Application:
93-
#' - `recipes::recipe()`
94-
#' - `recipes::prep()`
95-
#' - `recipes::bake()`
93+
#' - [recipes::recipe()]
94+
#' - [recipes::prep()]
95+
#' - [recipes::bake()]
9696
#'
9797
#' @export
9898
step_box_cox <-

R/recipes-step_diff.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
#' `step_diff` creates a *specification* of a recipe step that
44
#' will add new columns of differenced data. Differenced data will
55
#' include NA values where a difference was induced.
6-
#' These can be removed with [step_naomit()].
6+
#' These can be removed with [recipes::step_naomit()].
77
#'
88
#' @param recipe A recipe object. The step will be added to the sequence of
99
#' operations for this recipe.
1010
#' @param ... One or more selector functions to choose which variables are
11-
#' affected by the step. See [selections()] for more details.
11+
#' affected by the step. See [recipes::selections()] for more details.
1212
#' @param role Defaults to "predictor"
1313
#' @param trained A logical to indicate if the quantities for preprocessing
1414
#' have been estimated.
@@ -46,9 +46,9 @@
4646
#' - [recipes::step_naomit()]
4747
#'
4848
#' Main Recipe Functions:
49-
#' - `recipes::recipe()`
50-
#' - `recipes::prep()`
51-
#' - `recipes::bake()`
49+
#' - [recipes::recipe()]
50+
#' - [recipes::prep()]
51+
#' - [recipes::bake()]
5252
#'
5353
#' @export
5454
#' @rdname step_diff

R/recipes-step_fourier.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
#' will be used as predictors in a model.
2424
#' @param columns A character string of variables that will be
2525
#' used as inputs. This field is a placeholder and will be
26-
#' populated once `recipes::prep()` is used.
26+
#' populated once [recipes::prep()] is used.
2727
#' @param scale_factor A factor for scaling the numeric index extracted
2828
#' from the date or date-time feature. This is a placeholder and will be populated
29-
#' once `recipes::prep()` is used.
29+
#' once [recipes::prep()] is used.
3030
#' @param skip A logical. Should the step be skipped when the recipe is
3131
#' baked by bake.recipe()? While all operations are baked when prep.recipe()
3232
#' is run, some operations may not be able to be conducted on new data
@@ -119,16 +119,16 @@
119119
#'
120120
#' Time Series Analysis:
121121
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
122-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
122+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
123123
#' - Smoothing: [step_slidify()], [step_smooth()]
124124
#' - Variance Reduction: [step_box_cox()]
125125
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
126126
#' - Padding: [step_ts_pad()]
127127
#'
128128
#' Main Recipe Functions:
129-
#' - `recipes::recipe()`
130-
#' - `recipes::prep()`
131-
#' - `recipes::bake()`
129+
#' - [recipes::recipe()]
130+
#' - [recipes::prep()]
131+
#' - [recipes::bake()]
132132
#'
133133
#'
134134
#' @importFrom recipes rand_id

R/recipes-step_holiday_signature.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
#' will be used as predictors in a model.
2626
#' @param columns A character string of variables that will be
2727
#' used as inputs. This field is a placeholder and will be
28-
#' populated once `recipes::prep()` is used.
28+
#' populated once [recipes::prep()] is used.
2929
#' @param features A character string of features that will be
3030
#' generated. This field is a placeholder and will be
31-
#' populated once `recipes::prep()` is used.
31+
#' populated once [recipes::prep()] is used.
3232
#' @param skip A logical. Should the step be skipped when the recipe is
3333
#' baked by bake.recipe()? While all operations are baked when prep.recipe()
3434
#' is run, some operations may not be able to be conducted on new data
@@ -74,16 +74,16 @@
7474
#' @seealso
7575
#' Time Series Analysis:
7676
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
77-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
77+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
7878
#' - Smoothing: [step_slidify()], [step_smooth()]
7979
#' - Variance Reduction: [step_box_cox()]
8080
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
8181
#' - Padding: [step_ts_pad()]
8282
#'
8383
#' Main Recipe Functions:
84-
#' - `recipes::recipe()`
85-
#' - `recipes::prep()`
86-
#' - `recipes::bake()`
84+
#' - [recipes::recipe()]
85+
#' - [recipes::prep()]
86+
#' - [recipes::bake()]
8787
#'
8888
#' @examples
8989
#' library(recipes)

R/recipes-step_log_interval.R

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' @inheritParams log_interval_vec
99
#' @param recipe A `recipe` object. The step will be added to the sequence of operations for this recipe.
1010
#' @param ... One or more selector functions to choose which
11-
#' variables are affected by the step. See [selections()]
11+
#' variables are affected by the step. See [recipes::selections()]
1212
#' for more details. For the `tidy` method, these are not
1313
#' currently used.
1414
#'
@@ -69,20 +69,20 @@
6969
#'
7070
#' Time Series Analysis:
7171
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
72-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
72+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
7373
#' - Smoothing: [step_slidify()], [step_smooth()]
7474
#' - Variance Reduction: [step_log_interval()]
7575
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
7676
#' - Padding: [step_ts_pad()]
7777
#'
7878
#' Transformations to reduce variance:
79-
#' - `recipes::step_log()` - Log transformation
80-
#' - `recipes::step_sqrt()` - Square-Root Power Transformation
79+
#' - [recipes::step_log()] - Log transformation
80+
#' - [recipes::step_sqrt()] - Square-Root Power Transformation
8181
#'
8282
#' Recipe Setup and Application:
83-
#' - `recipes::recipe()`
84-
#' - `recipes::prep()`
85-
#' - `recipes::bake()`
83+
#' - [recipes::recipe()]
84+
#' - [recipes::prep()]
85+
#' - [recipes::bake()]
8686
#'
8787
#' @export
8888
step_log_interval <-

R/recipes-step_slidify.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#' will be used as predictors in a model.
4242
#' @param columns A character string of variables that will be
4343
#' used as inputs. This field is a placeholder and will be
44-
#' populated once `recipes::prep()` is used.
44+
#' populated once [recipes::prep()] is used.
4545
#' @param f_name A character string for the function being applied.
4646
#' This field is a placeholder and will be populated during the `tidy()` step.
4747
#' @param skip A logical. Should the step be skipped when the recipe is
@@ -89,16 +89,16 @@
8989
#' @seealso
9090
#' Time Series Analysis:
9191
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
92-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
92+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
9393
#' - Smoothing: [step_slidify()], [step_smooth()]
9494
#' - Variance Reduction: [step_box_cox()]
9595
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
9696
#' - Padding: [step_ts_pad()]
9797
#'
9898
#' Main Recipe Functions:
99-
#' - `recipes::recipe()`
100-
#' - `recipes::prep()`
101-
#' - `recipes::bake()`
99+
#' - [recipes::recipe()]
100+
#' - [recipes::prep()]
101+
#' - [recipes::bake()]
102102
#'
103103
#' @examples
104104
#' library(recipes)

R/recipes-step_slidify_augment.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@
5353
#' @seealso
5454
#' Time Series Analysis:
5555
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
56-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
56+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
5757
#' - Smoothing: [step_slidify()], [step_smooth()]
5858
#' - Variance Reduction: [step_box_cox()]
5959
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
6060
#' - Padding: [step_ts_pad()]
6161
#'
6262
#' Main Recipe Functions:
63-
#' - `recipes::recipe()`
64-
#' - `recipes::prep()`
65-
#' - `recipes::bake()`
63+
#' - [recipes::recipe()]
64+
#' - [recipes::prep()]
65+
#' - [recipes::bake()]
6666
#'
6767
#' @examples
6868
#' # library(tidymodels)

R/recipes-step_smooth.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#' will be used as predictors in a model.
3434
#' @param columns A character string of variables that will be
3535
#' 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.
3737
#' @param skip A logical. Should the step be skipped when the recipe is
3838
#' baked by bake.recipe()? While all operations are baked when prep.recipe()
3939
#' is run, some operations may not be able to be conducted on new data
@@ -55,7 +55,7 @@
5555
#' @details
5656
#'
5757
#' __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()]
5959
#' with a modification to set a fixed `period` rather than a percentage of
6060
#' data points via a `span`.
6161
#'
@@ -85,16 +85,16 @@
8585
#' @seealso
8686
#' Time Series Analysis:
8787
#' - 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()]
8989
#' - Smoothing: [step_slidify()], [step_smooth()]
9090
#' - Variance Reduction: [step_box_cox()]
9191
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
9292
#' - Padding: [step_ts_pad()]
9393
#'
9494
#' Main Recipe Functions:
95-
#' - `recipes::recipe()`
96-
#' - `recipes::prep()`
97-
#' - `recipes::bake()`
95+
#' - [recipes::recipe()]
96+
#' - [recipes::prep()]
97+
#' - [recipes::bake()]
9898
#'
9999
#' @examples
100100
#' library(recipes)

R/recipes-step_timeseries_signature.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#' will be used as predictors in a model.
2020
#' @param columns A character string of variables that will be
2121
#' used as inputs. This field is a placeholder and will be
22-
#' populated once `recipes::prep()` is used.
22+
#' populated once [recipes::prep()] is used.
2323
#' @param skip A logical. Should the step be skipped when the recipe is
2424
#' baked by bake.recipe()? While all operations are baked when prep.recipe()
2525
#' is run, some operations may not be able to be conducted on new data
@@ -36,16 +36,16 @@
3636
#' @seealso
3737
#' Time Series Analysis:
3838
#' - Engineered Features: [step_timeseries_signature()], [step_holiday_signature()], [step_fourier()]
39-
#' - Diffs & Lags [step_diff()], `recipes::step_lag()`
39+
#' - Diffs & Lags [step_diff()], [recipes::step_lag()]
4040
#' - Smoothing: [step_slidify()], [step_smooth()]
4141
#' - Variance Reduction: [step_box_cox()]
4242
#' - Imputation: [step_ts_impute()], [step_ts_clean()]
4343
#' - Padding: [step_ts_pad()]
4444
#'
4545
#' Main Recipe Functions:
46-
#' - `recipes::recipe()`
47-
#' - `recipes::prep()`
48-
#' - `recipes::bake()`
46+
#' - [recipes::recipe()]
47+
#' - [recipes::prep()]
48+
#' - [recipes::bake()]
4949
#'
5050
#'
5151
#' @details

0 commit comments

Comments
 (0)