epiverse-trace / tutorials-middle

https://epiverse-trace.github.io/tutorials-middle/
Other
3 stars 1 forks source link

fix and explain why the date range to estimate secondary observations #52

Closed avallecam closed 2 months ago

avallecam commented 3 months ago

Change

# Estimate from first 60 days of this data
cases_to_estimate <- reported_cases_deaths[31:60, ]

To

# Estimate from day 31 to day 60 of this data
cases_to_estimate <- reported_cases_deaths[31:60, ]

Plus, explanation why: between day 1 and day 30, there are no deaths reported!

To fix in #47