Skip to content

Commit

Permalink
2024-09-01 update : fixing error in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbernalz committed Sep 2, 2024
1 parent a5d04d8 commit 1b04bff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/tutorials/uciwwiehr_model_fitting_forecast.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data_wastewater = df.log_ww_conc
obstimes_hosp = df.obstimes
obstimes_wastewater = df.obstimes
max_obstime = max(length(obstimes_hosp), length(obstimes_wastewater))
param_change_times = 1:7:max_obstime) # Change every week
param_change_times = 1:7:max_obstime # Change every week
priors_only = false
n_samples = 50
forecast = true
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/uciwwiehr_model_fitting_no_forecast.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ data_wastewater = df.log_ww_conc
obstimes_hosp = df.obstimes
obstimes_wastewater = df.obstimes
max_obstime = max(length(obstimes_hosp), length(obstimes_wastewater))
param_change_times = 1:7:max_obstime) # Change every week
param_change_times = 1:7:max_obstime # Change every week
priors_only = false
n_samples = 50
forecast = false
Expand Down

0 comments on commit 1b04bff

Please sign in to comment.