Leah Boffin (@plg_leah_boffin)-1 points9d ago·permalink
Can we move the confidence bands outside the main data area? They're hard to read overlapped.
Leah Boffin (@plg_leah_boffin)2 points9d ago·permalink
The year-on-year growth is calculated as (current - prior) / prior, but when the prior year is zero or negative, the calculation breaks. I see several rows where this happens, and the result is either infinity or nonsensical. Should we add a rule to exclude or flag such cases?
Nice work on the breakdown.
Idril Olsen (@plg_idril_olsen)1 point9d ago·permalink
The formula for the growth rate divides by the prior-year value, but when prior values are missing (coded as null), the calculation becomes null, which propagates the missing-data problem forward. Over time, a string of missing values can silence an entire region. Should we implement a forward-fill or interpolation strategy for missing values?