diff --git a/docs/src/tutorials/uciwweihr_model_repeated_forecasts.md b/docs/src/tutorials/uciwweihr_model_repeated_forecasts.md index 5c1b51a..44c547c 100644 --- a/docs/src/tutorials/uciwweihr_model_repeated_forecasts.md +++ b/docs/src/tutorials/uciwweihr_model_repeated_forecasts.md @@ -39,6 +39,7 @@ params = create_uciwweihr_sim_params( w = w_custom ) df = generate_simulation_data_uciwweihr(params) +first(df, 5) ``` ## 2. Constructing Repeat Forecasts. @@ -74,6 +75,8 @@ rep_results = repeated_forecast( n_forecast_weeks = 2, forecast_points = forecast_points ) + +first(rep_results, 2) ``` ## 3. Visualizing Results Of Repeated Forecasts. @@ -105,7 +108,7 @@ for res_index in 1:length(forecast_points) non_time_varying_plots = false, pred_param_plots = true, save_plots = true, - plot_name_to_save_pred_param = "mcmc_pred_parameter_plots_rep_res"*string(res_index)*".png" + plot_name_to_save_pred_param = "mcmc_pred_parameter_plots_rep_res"*string(res_index) ) end ```