Skip to content

Commit 00f3755

Browse files
committed
Merged namespace
Merge branch 'main' of https://github.com/kenmawer/epipredict into km-issue_22_v3 # Conflicts: # NAMESPACE
2 parents f29ae48 + 878eb71 commit 00f3755

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

NAMESPACE

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ export(smooth_arx_args_list)
2626
export(smooth_arx_forecaster)
2727
export(step_epi_ahead)
2828
export(step_epi_lag)
29+
<<<<<<< HEAD
2930
export(step_narm)
31+
=======
32+
export(step_epi_naomit)
33+
export(step_epi_shift)
34+
>>>>>>> 878eb71132d58400f79ffdd6eb14452f289cbf6a
3035
import(recipes)
3136
importFrom(magrittr,"%>%")
3237
importFrom(rlang,"!!")

R/step_narm.R renamed to R/step_epi_naomit.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#' however, only omits predictors at prediction time
77
#' @export
88

9-
step_narm <- function(x) {
9+
step_epi_naomit <- function(x) {
1010
x %>%
1111
recipes::step_naomit(all_predictors()) %>%
1212
recipes::step_naomit(all_outcomes(), skip = TRUE)
Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ r <- epi_recipe(x) %>%
1616
step_epi_ahead(death_rate, ahead = 7) %>%
1717
step_epi_lag(death_rate, lag = c(0,7,14))
1818

19-
z1 <- step_narm(r)
19+
z1 <- step_epi_naomit(r)
2020
z2 <- r %>%
2121
step_naomit(all_predictors()) %>%
2222
step_naomit(all_outcomes(), skip = TRUE)

0 commit comments

Comments
 (0)