Skip to content

Commit

Permalink
2024-09-14 update : fixing docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbernalz committed Sep 14, 2024
1 parent 69a6ccf commit 413235a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/tutorials/uciwweihr_model_repeated_forecasts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
```
Expand Down

0 comments on commit 413235a

Please sign in to comment.