@@ -21,6 +21,7 @@ S3method(bake,check_enough_train_data)
2121S3method(bake,epi_recipe)
2222S3method(bake,step_epi_ahead)
2323S3method(bake,step_epi_lag)
24+ S3method(bake,step_epi_slide)
2425S3method(bake,step_growth_rate)
2526S3method(bake,step_lag_difference)
2627S3method(bake,step_population_scaling)
@@ -62,6 +63,7 @@ S3method(prep,check_enough_train_data)
6263S3method(prep,epi_recipe)
6364S3method(prep,step_epi_ahead)
6465S3method(prep,step_epi_lag)
66+ S3method(prep,step_epi_slide)
6567S3method(prep,step_growth_rate)
6668S3method(prep,step_lag_difference)
6769S3method(prep,step_population_scaling)
@@ -90,6 +92,7 @@ S3method(print,layer_threshold)
9092S3method(print,layer_unnest)
9193S3method(print,step_epi_ahead)
9294S3method(print,step_epi_lag)
95+ S3method(print,step_epi_slide)
9396S3method(print,step_growth_rate)
9497S3method(print,step_lag_difference)
9598S3method(print,step_naomit)
@@ -143,6 +146,7 @@ export(bake)
143146export(cdc_baseline_args_list)
144147export(cdc_baseline_forecaster)
145148export(check_enough_train_data)
149+ export(clean_f_name)
146150export(default_epi_recipe_blueprint)
147151export(detect_layer)
148152export(dist_quantiles)
@@ -194,6 +198,7 @@ export(smooth_quantile_reg)
194198export(step_epi_ahead)
195199export(step_epi_lag)
196200export(step_epi_naomit)
201+ export(step_epi_slide)
197202export(step_growth_rate)
198203export(step_lag_difference)
199204export(step_population_scaling)
@@ -221,10 +226,12 @@ importFrom(checkmate,assert_scalar)
221226importFrom(cli,cli_abort)
222227importFrom(dplyr,across)
223228importFrom(dplyr,all_of)
229+ importFrom(dplyr,bind_cols)
224230importFrom(dplyr,group_by)
225231importFrom(dplyr,n)
226232importFrom(dplyr,summarise)
227233importFrom(dplyr,ungroup)
234+ importFrom(epiprocess,epi_slide)
228235importFrom(epiprocess,growth_rate)
229236importFrom(generics,augment)
230237importFrom(generics,fit)
@@ -244,6 +251,8 @@ importFrom(rlang,":=")
244251importFrom(rlang,abort)
245252importFrom(rlang,as_function)
246253importFrom(rlang,caller_env)
254+ importFrom(rlang,enquo)
255+ importFrom(rlang,enquos)
247256importFrom(rlang,global_env)
248257importFrom(rlang,inject)
249258importFrom(rlang,is_logical)
@@ -262,6 +271,7 @@ importFrom(stats,qnorm)
262271importFrom(stats,quantile)
263272importFrom(stats,residuals)
264273importFrom(tibble,tibble)
274+ importFrom(tidyr,crossing)
265275importFrom(tidyr,drop_na)
266276importFrom(vctrs,as_list_of)
267277importFrom(vctrs,field)
0 commit comments