@@ -20,6 +20,7 @@ S3method(autoplot,epi_workflow)
2020S3method(bake,check_enough_train_data)
2121S3method(bake,epi_recipe)
2222S3method(bake,step_adjust_latency)
23+ S3method(bake,step_climate)
2324S3method(bake,step_epi_ahead)
2425S3method(bake,step_epi_lag)
2526S3method(bake,step_epi_slide)
@@ -59,6 +60,7 @@ S3method(predict,flatline)
5960S3method(prep,check_enough_train_data)
6061S3method(prep,epi_recipe)
6162S3method(prep,step_adjust_latency)
63+ S3method(prep,step_climate)
6264S3method(prep,step_epi_ahead)
6365S3method(prep,step_epi_lag)
6466S3method(prep,step_epi_slide)
@@ -72,6 +74,7 @@ S3method(print,arx_fcast)
7274S3method(print,canned_epipred)
7375S3method(print,cdc_baseline_fcast)
7476S3method(print,check_enough_train_data)
77+ S3method(print,climate_fcast)
7578S3method(print,epi_recipe)
7679S3method(print,epi_workflow)
7780S3method(print,flat_fcast)
@@ -89,6 +92,7 @@ S3method(print,layer_residual_quantiles)
8992S3method(print,layer_threshold)
9093S3method(print,layer_unnest)
9194S3method(print,step_adjust_latency)
95+ S3method(print,step_climate)
9296S3method(print,step_epi_ahead)
9397S3method(print,step_epi_lag)
9498S3method(print,step_epi_slide)
@@ -152,6 +156,8 @@ export(cdc_baseline_args_list)
152156export(cdc_baseline_forecaster)
153157export(check_enough_train_data)
154158export(clean_f_name)
159+ export(climate_args_list)
160+ export(climatological_forecaster)
155161export(default_epi_recipe_blueprint)
156162export(detect_layer)
157163export(dist_quantiles)
@@ -207,6 +213,7 @@ export(select)
207213export(slather)
208214export(smooth_quantile_reg)
209215export(step_adjust_latency)
216+ export(step_climate)
210217export(step_epi_ahead)
211218export(step_epi_lag)
212219export(step_epi_naomit)
@@ -286,6 +293,10 @@ importFrom(glue,glue)
286293importFrom(hardhat,extract_recipe)
287294importFrom(hardhat,refresh_blueprint)
288295importFrom(hardhat,run_mold)
296+ importFrom(lubridate,"%m-%")
297+ importFrom(lubridate,leap_year)
298+ importFrom(lubridate,month)
299+ importFrom(lubridate,yday)
289300importFrom(magrittr,"%>%")
290301importFrom(magrittr,extract2)
291302importFrom(recipes,bake)
0 commit comments