@cdc/chart 4.24.1 → 4.24.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/dist/cdcchart.js +48948 -37923
  2. package/examples/{private/combo.json → chart-regression-1.json} +40 -31
  3. package/examples/chart-regression-2.json +2360 -0
  4. package/examples/feature/filters/url-filter.json +1076 -0
  5. package/examples/feature/line/line-chart-preliminary.json +84 -37
  6. package/examples/feature/line/line-chart.json +2 -1
  7. package/examples/feature/regions/index.json +55 -5
  8. package/examples/feature/sankey/sankey-example-data.json +1364 -0
  9. package/examples/feature/sankey/sankey_chart_data.csv +20 -0
  10. package/examples/gallery/bar-chart-vertical/vertical-bar-chart-stacked.json +306 -19
  11. package/examples/sparkline.json +868 -0
  12. package/index.html +128 -121
  13. package/package.json +4 -2
  14. package/src/CdcChart.tsx +73 -38
  15. package/src/_stories/ChartEditor.stories.tsx +15 -4
  16. package/src/_stories/_mock/pie_config.json +4 -3
  17. package/src/_stories/_mock/url_filter.json +1076 -0
  18. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +2 -1
  19. package/src/components/AreaChart/components/AreaChart.jsx +2 -25
  20. package/src/components/BarChart/components/BarChart.Horizontal.tsx +39 -49
  21. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +36 -56
  22. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +36 -41
  23. package/src/components/BarChart/components/BarChart.Vertical.tsx +48 -64
  24. package/src/components/BoxPlot/BoxPlot.jsx +11 -9
  25. package/src/components/DeviationBar.jsx +3 -3
  26. package/src/components/EditorPanel/EditorPanel.tsx +1717 -1961
  27. package/src/components/EditorPanel/EditorPanelContext.ts +40 -0
  28. package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +148 -0
  29. package/src/components/EditorPanel/components/{Panel.ForestPlotSettings.tsx → Panels/Panel.ForestPlotSettings.tsx} +16 -7
  30. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +160 -0
  31. package/src/components/EditorPanel/components/{Panel.Regions.tsx → Panels/Panel.Regions.tsx} +6 -6
  32. package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +108 -0
  33. package/src/components/EditorPanel/components/{Panel.Series.tsx → Panels/Panel.Series.tsx} +50 -6
  34. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +338 -0
  35. package/src/components/EditorPanel/components/Panels/index.tsx +19 -0
  36. package/src/components/EditorPanel/components/panels.scss +11 -0
  37. package/src/components/EditorPanel/editor-panel.scss +1 -13
  38. package/src/components/EditorPanel/useEditorPermissions.js +44 -13
  39. package/src/components/Legend/Legend.Component.tsx +207 -0
  40. package/src/components/Legend/Legend.tsx +8 -327
  41. package/src/components/Legend/helpers/createFormatLabels.tsx +140 -0
  42. package/src/components/LineChart/LineChartProps.ts +2 -1
  43. package/src/components/LineChart/components/LineChart.Circle.tsx +85 -52
  44. package/src/components/LineChart/helpers.ts +3 -3
  45. package/src/components/LineChart/index.tsx +99 -23
  46. package/src/components/LinearChart.jsx +12 -33
  47. package/src/components/PairedBarChart.jsx +10 -12
  48. package/src/components/PieChart/PieChart.tsx +80 -27
  49. package/src/components/Regions/components/Regions.tsx +120 -69
  50. package/src/components/Sankey/index.tsx +434 -0
  51. package/src/components/Sankey/sankey.scss +153 -0
  52. package/src/components/Sankey/types/index.ts +16 -0
  53. package/src/components/ScatterPlot/ScatterPlot.jsx +1 -0
  54. package/src/components/Sparkline/{SparkLine.jsx → components/SparkLine.tsx} +14 -30
  55. package/src/components/Sparkline/index.scss +3 -0
  56. package/src/components/Sparkline/index.tsx +1 -1
  57. package/src/components/ZoomBrush.tsx +2 -1
  58. package/src/data/initial-state.js +51 -4
  59. package/src/helpers/computeMarginBottom.ts +4 -3
  60. package/src/helpers/tests/computeMarginBottom.test.ts +2 -1
  61. package/src/hooks/useBarChart.js +5 -2
  62. package/src/hooks/useHighlightedBars.js +1 -1
  63. package/src/hooks/useMinMax.ts +3 -3
  64. package/src/hooks/useScales.ts +28 -18
  65. package/src/hooks/useTooltip.tsx +19 -14
  66. package/src/scss/main.scss +8 -96
  67. package/src/types/ChartConfig.ts +47 -20
  68. package/src/types/ChartContext.ts +17 -4
  69. package/src/types/Label.ts +7 -0
  70. package/examples/private/chart-t.json +0 -3740
  71. package/examples/private/epi-data.csv +0 -13
  72. package/examples/private/epi-data.json +0 -62
  73. package/examples/private/epi.json +0 -403
  74. package/examples/private/occupancy.json +0 -109283
  75. package/examples/private/prod-line-config.json +0 -401
  76. package/examples/private/region-data.json +0 -822
  77. package/examples/private/region-testing.json +0 -312
  78. package/examples/private/scaling.json +0 -45325
  79. package/examples/private/testing-data.json +0 -1739
  80. package/examples/private/testing.json +0 -816
  81. package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +0 -109
  82. package/src/components/EditorPanel/components/Panels.tsx +0 -13
@@ -1,822 +0,0 @@
1
- [
2
- {
3
- "week_end": "2022-10-01",
4
- "pathogen": "Influenza",
5
- "percent_deaths_selected_pathogen_currentweek": "0.0"
6
- },
7
- {
8
- "week_end": "2022-10-01",
9
- "pathogen": "COVID-19",
10
- "percent_deaths_selected_pathogen_currentweek": "4.1"
11
- },
12
- {
13
- "week_end": "2022-10-08",
14
- "pathogen": "Influenza",
15
- "percent_deaths_selected_pathogen_currentweek": "0.0"
16
- },
17
- {
18
- "week_end": "2022-10-08",
19
- "pathogen": "COVID-19",
20
- "percent_deaths_selected_pathogen_currentweek": "3.7"
21
- },
22
- {
23
- "week_end": "2022-10-15",
24
- "pathogen": "Influenza",
25
- "percent_deaths_selected_pathogen_currentweek": "0.1"
26
- },
27
- {
28
- "week_end": "2022-10-15",
29
- "pathogen": "RSV",
30
- "percent_deaths_selected_pathogen_currentweek": "0.0"
31
- },
32
- {
33
- "week_end": "2022-10-15",
34
- "pathogen": "COVID-19",
35
- "percent_deaths_selected_pathogen_currentweek": "3.6"
36
- },
37
- {
38
- "week_end": "2022-10-22",
39
- "pathogen": "Influenza",
40
- "percent_deaths_selected_pathogen_currentweek": "0.1"
41
- },
42
- {
43
- "week_end": "2022-10-22",
44
- "pathogen": "RSV",
45
- "percent_deaths_selected_pathogen_currentweek": "0.0"
46
- },
47
- {
48
- "week_end": "2022-10-22",
49
- "pathogen": "COVID-19",
50
- "percent_deaths_selected_pathogen_currentweek": "3.7"
51
- },
52
- {
53
- "week_end": "2022-10-29",
54
- "pathogen": "Influenza",
55
- "percent_deaths_selected_pathogen_currentweek": "0.2"
56
- },
57
- {
58
- "week_end": "2022-10-29",
59
- "pathogen": "RSV",
60
- "percent_deaths_selected_pathogen_currentweek": "0.0"
61
- },
62
- {
63
- "week_end": "2022-10-29",
64
- "pathogen": "COVID-19",
65
- "percent_deaths_selected_pathogen_currentweek": "3.7"
66
- },
67
- {
68
- "week_end": "2022-11-05",
69
- "pathogen": "Influenza",
70
- "percent_deaths_selected_pathogen_currentweek": "0.2"
71
- },
72
- {
73
- "week_end": "2022-11-05",
74
- "pathogen": "RSV",
75
- "percent_deaths_selected_pathogen_currentweek": "0.0"
76
- },
77
- {
78
- "week_end": "2022-11-05",
79
- "pathogen": "COVID-19",
80
- "percent_deaths_selected_pathogen_currentweek": "3.7"
81
- },
82
- {
83
- "week_end": "2022-11-12",
84
- "pathogen": "Influenza",
85
- "percent_deaths_selected_pathogen_currentweek": "0.4"
86
- },
87
- {
88
- "week_end": "2022-11-12",
89
- "pathogen": "RSV",
90
- "percent_deaths_selected_pathogen_currentweek": "0.1"
91
- },
92
- {
93
- "week_end": "2022-11-12",
94
- "pathogen": "COVID-19",
95
- "percent_deaths_selected_pathogen_currentweek": "3.6"
96
- },
97
- {
98
- "week_end": "2022-11-19",
99
- "pathogen": "Influenza",
100
- "percent_deaths_selected_pathogen_currentweek": "0.4"
101
- },
102
- {
103
- "week_end": "2022-11-19",
104
- "pathogen": "RSV",
105
- "percent_deaths_selected_pathogen_currentweek": "0.1"
106
- },
107
- {
108
- "week_end": "2022-11-19",
109
- "pathogen": "COVID-19",
110
- "percent_deaths_selected_pathogen_currentweek": "3.7"
111
- },
112
- {
113
- "week_end": "2022-11-26",
114
- "pathogen": "Influenza",
115
- "percent_deaths_selected_pathogen_currentweek": "0.7"
116
- },
117
- {
118
- "week_end": "2022-11-26",
119
- "pathogen": "RSV",
120
- "percent_deaths_selected_pathogen_currentweek": "0.1"
121
- },
122
- {
123
- "week_end": "2022-11-26",
124
- "pathogen": "COVID-19",
125
- "percent_deaths_selected_pathogen_currentweek": "3.9"
126
- },
127
- {
128
- "week_end": "2022-12-03",
129
- "pathogen": "Influenza",
130
- "percent_deaths_selected_pathogen_currentweek": "1.3"
131
- },
132
- {
133
- "week_end": "2022-12-03",
134
- "pathogen": "RSV",
135
- "percent_deaths_selected_pathogen_currentweek": "0.1"
136
- },
137
- {
138
- "week_end": "2022-12-03",
139
- "pathogen": "COVID-19",
140
- "percent_deaths_selected_pathogen_currentweek": "3.9"
141
- },
142
- {
143
- "week_end": "2022-12-10",
144
- "pathogen": "Influenza",
145
- "percent_deaths_selected_pathogen_currentweek": "1.5"
146
- },
147
- {
148
- "week_end": "2022-12-10",
149
- "pathogen": "RSV",
150
- "percent_deaths_selected_pathogen_currentweek": "0.1"
151
- },
152
- {
153
- "week_end": "2022-12-10",
154
- "pathogen": "COVID-19",
155
- "percent_deaths_selected_pathogen_currentweek": "4.5"
156
- },
157
- {
158
- "week_end": "2022-12-17",
159
- "pathogen": "Influenza",
160
- "percent_deaths_selected_pathogen_currentweek": "1.6"
161
- },
162
- {
163
- "week_end": "2022-12-17",
164
- "pathogen": "RSV",
165
- "percent_deaths_selected_pathogen_currentweek": "0.1"
166
- },
167
- {
168
- "week_end": "2022-12-17",
169
- "pathogen": "COVID-19",
170
- "percent_deaths_selected_pathogen_currentweek": "4.8"
171
- },
172
- {
173
- "week_end": "2022-12-24",
174
- "pathogen": "Influenza",
175
- "percent_deaths_selected_pathogen_currentweek": "1.4"
176
- },
177
- {
178
- "week_end": "2022-12-24",
179
- "pathogen": "RSV",
180
- "percent_deaths_selected_pathogen_currentweek": "0.1"
181
- },
182
- {
183
- "week_end": "2022-12-24",
184
- "pathogen": "COVID-19",
185
- "percent_deaths_selected_pathogen_currentweek": "4.9"
186
- },
187
- {
188
- "week_end": "2022-12-31",
189
- "pathogen": "Influenza",
190
- "percent_deaths_selected_pathogen_currentweek": "1.4"
191
- },
192
- {
193
- "week_end": "2022-12-31",
194
- "pathogen": "RSV",
195
- "percent_deaths_selected_pathogen_currentweek": "0.1"
196
- },
197
- {
198
- "week_end": "2022-12-31",
199
- "pathogen": "COVID-19",
200
- "percent_deaths_selected_pathogen_currentweek": "5.2"
201
- },
202
- {
203
- "week_end": "2023-01-07",
204
- "pathogen": "Influenza",
205
- "percent_deaths_selected_pathogen_currentweek": "1.2"
206
- },
207
- {
208
- "week_end": "2023-01-07",
209
- "pathogen": "RSV",
210
- "percent_deaths_selected_pathogen_currentweek": "0.1"
211
- },
212
- {
213
- "week_end": "2023-01-07",
214
- "pathogen": "COVID-19",
215
- "percent_deaths_selected_pathogen_currentweek": "5.6"
216
- },
217
- {
218
- "week_end": "2023-01-14",
219
- "pathogen": "Influenza",
220
- "percent_deaths_selected_pathogen_currentweek": "0.9"
221
- },
222
- {
223
- "week_end": "2023-01-14",
224
- "pathogen": "RSV",
225
- "percent_deaths_selected_pathogen_currentweek": "0.1"
226
- },
227
- {
228
- "week_end": "2023-01-14",
229
- "pathogen": "COVID-19",
230
- "percent_deaths_selected_pathogen_currentweek": "5.6"
231
- },
232
- {
233
- "week_end": "2023-01-21",
234
- "pathogen": "Influenza",
235
- "percent_deaths_selected_pathogen_currentweek": "0.6"
236
- },
237
- {
238
- "week_end": "2023-01-21",
239
- "pathogen": "RSV",
240
- "percent_deaths_selected_pathogen_currentweek": "0.0"
241
- },
242
- {
243
- "week_end": "2023-01-21",
244
- "pathogen": "COVID-19",
245
- "percent_deaths_selected_pathogen_currentweek": "5.1"
246
- },
247
- {
248
- "week_end": "2023-01-28",
249
- "pathogen": "Influenza",
250
- "percent_deaths_selected_pathogen_currentweek": "0.4"
251
- },
252
- {
253
- "week_end": "2023-01-28",
254
- "pathogen": "RSV",
255
- "percent_deaths_selected_pathogen_currentweek": "0.0"
256
- },
257
- {
258
- "week_end": "2023-01-28",
259
- "pathogen": "COVID-19",
260
- "percent_deaths_selected_pathogen_currentweek": "4.7"
261
- },
262
- {
263
- "week_end": "2023-02-04",
264
- "pathogen": "Influenza",
265
- "percent_deaths_selected_pathogen_currentweek": "0.2"
266
- },
267
- {
268
- "week_end": "2023-02-04",
269
- "pathogen": "RSV",
270
- "percent_deaths_selected_pathogen_currentweek": "0.0"
271
- },
272
- {
273
- "week_end": "2023-02-04",
274
- "pathogen": "COVID-19",
275
- "percent_deaths_selected_pathogen_currentweek": "4.2"
276
- },
277
- {
278
- "week_end": "2023-02-11",
279
- "pathogen": "Influenza",
280
- "percent_deaths_selected_pathogen_currentweek": "0.2"
281
- },
282
- {
283
- "week_end": "2023-02-11",
284
- "pathogen": "RSV",
285
- "percent_deaths_selected_pathogen_currentweek": "0.0"
286
- },
287
- {
288
- "week_end": "2023-02-11",
289
- "pathogen": "COVID-19",
290
- "percent_deaths_selected_pathogen_currentweek": "3.8"
291
- },
292
- {
293
- "week_end": "2023-02-18",
294
- "pathogen": "Influenza",
295
- "percent_deaths_selected_pathogen_currentweek": "0.2"
296
- },
297
- {
298
- "week_end": "2023-02-18",
299
- "pathogen": "COVID-19",
300
- "percent_deaths_selected_pathogen_currentweek": "3.4"
301
- },
302
- {
303
- "week_end": "2023-02-25",
304
- "pathogen": "Influenza",
305
- "percent_deaths_selected_pathogen_currentweek": "0.1"
306
- },
307
- {
308
- "week_end": "2023-02-25",
309
- "pathogen": "COVID-19",
310
- "percent_deaths_selected_pathogen_currentweek": "3.5"
311
- },
312
- {
313
- "week_end": "2023-03-04",
314
- "pathogen": "Influenza",
315
- "percent_deaths_selected_pathogen_currentweek": "0.1"
316
- },
317
- {
318
- "week_end": "2023-03-04",
319
- "pathogen": "COVID-19",
320
- "percent_deaths_selected_pathogen_currentweek": "3.3"
321
- },
322
- {
323
- "week_end": "2023-03-11",
324
- "pathogen": "Influenza",
325
- "percent_deaths_selected_pathogen_currentweek": "0.1"
326
- },
327
- {
328
- "week_end": "2023-03-11",
329
- "pathogen": "RSV",
330
- "percent_deaths_selected_pathogen_currentweek": "0.0"
331
- },
332
- {
333
- "week_end": "2023-03-11",
334
- "pathogen": "COVID-19",
335
- "percent_deaths_selected_pathogen_currentweek": "3.1"
336
- },
337
- {
338
- "week_end": "2023-03-18",
339
- "pathogen": "Influenza",
340
- "percent_deaths_selected_pathogen_currentweek": "0.1"
341
- },
342
- {
343
- "week_end": "2023-03-18",
344
- "pathogen": "COVID-19",
345
- "percent_deaths_selected_pathogen_currentweek": "2.9"
346
- },
347
- {
348
- "week_end": "2023-03-25",
349
- "pathogen": "Influenza",
350
- "percent_deaths_selected_pathogen_currentweek": "0.1"
351
- },
352
- {
353
- "week_end": "2023-03-25",
354
- "pathogen": "COVID-19",
355
- "percent_deaths_selected_pathogen_currentweek": "2.8"
356
- },
357
- {
358
- "week_end": "2023-04-01",
359
- "pathogen": "Influenza",
360
- "percent_deaths_selected_pathogen_currentweek": "0.1"
361
- },
362
- {
363
- "week_end": "2023-04-01",
364
- "pathogen": "COVID-19",
365
- "percent_deaths_selected_pathogen_currentweek": "2.4"
366
- },
367
- {
368
- "week_end": "2023-04-08",
369
- "pathogen": "Influenza",
370
- "percent_deaths_selected_pathogen_currentweek": "0.1"
371
- },
372
- {
373
- "week_end": "2023-04-08",
374
- "pathogen": "COVID-19",
375
- "percent_deaths_selected_pathogen_currentweek": "2.4"
376
- },
377
- {
378
- "week_end": "2023-04-15",
379
- "pathogen": "Influenza",
380
- "percent_deaths_selected_pathogen_currentweek": "0.1"
381
- },
382
- {
383
- "week_end": "2023-04-15",
384
- "pathogen": "COVID-19",
385
- "percent_deaths_selected_pathogen_currentweek": "2.1"
386
- },
387
- {
388
- "week_end": "2023-04-22",
389
- "pathogen": "Influenza",
390
- "percent_deaths_selected_pathogen_currentweek": "0.1"
391
- },
392
- {
393
- "week_end": "2023-04-22",
394
- "pathogen": "RSV",
395
- "percent_deaths_selected_pathogen_currentweek": "0.0"
396
- },
397
- {
398
- "week_end": "2023-04-22",
399
- "pathogen": "COVID-19",
400
- "percent_deaths_selected_pathogen_currentweek": "2.1"
401
- },
402
- {
403
- "week_end": "2023-04-29",
404
- "pathogen": "Influenza",
405
- "percent_deaths_selected_pathogen_currentweek": "0.1"
406
- },
407
- {
408
- "week_end": "2023-04-29",
409
- "pathogen": "COVID-19",
410
- "percent_deaths_selected_pathogen_currentweek": "1.8"
411
- },
412
- {
413
- "week_end": "2023-05-06",
414
- "pathogen": "Influenza",
415
- "percent_deaths_selected_pathogen_currentweek": "0.1"
416
- },
417
- {
418
- "week_end": "2023-05-06",
419
- "pathogen": "COVID-19",
420
- "percent_deaths_selected_pathogen_currentweek": "1.6"
421
- },
422
- {
423
- "week_end": "2023-05-13",
424
- "pathogen": "Influenza",
425
- "percent_deaths_selected_pathogen_currentweek": "0.1"
426
- },
427
- {
428
- "week_end": "2023-05-13",
429
- "pathogen": "COVID-19",
430
- "percent_deaths_selected_pathogen_currentweek": "1.5"
431
- },
432
- {
433
- "week_end": "2023-05-20",
434
- "pathogen": "Influenza",
435
- "percent_deaths_selected_pathogen_currentweek": "0.1"
436
- },
437
- {
438
- "week_end": "2023-05-20",
439
- "pathogen": "COVID-19",
440
- "percent_deaths_selected_pathogen_currentweek": "1.3"
441
- },
442
- {
443
- "week_end": "2023-05-27",
444
- "pathogen": "Influenza",
445
- "percent_deaths_selected_pathogen_currentweek": "0.1"
446
- },
447
- {
448
- "week_end": "2023-05-27",
449
- "pathogen": "COVID-19",
450
- "percent_deaths_selected_pathogen_currentweek": "1.3"
451
- },
452
- {
453
- "week_end": "2023-06-03",
454
- "pathogen": "Influenza",
455
- "percent_deaths_selected_pathogen_currentweek": "0.1"
456
- },
457
- {
458
- "week_end": "2023-06-03",
459
- "pathogen": "COVID-19",
460
- "percent_deaths_selected_pathogen_currentweek": "1.2"
461
- },
462
- {
463
- "week_end": "2023-06-10",
464
- "pathogen": "Influenza",
465
- "percent_deaths_selected_pathogen_currentweek": "0.1"
466
- },
467
- {
468
- "week_end": "2023-06-10",
469
- "pathogen": "COVID-19",
470
- "percent_deaths_selected_pathogen_currentweek": "1.1"
471
- },
472
- {
473
- "week_end": "2023-06-17",
474
- "pathogen": "Influenza",
475
- "percent_deaths_selected_pathogen_currentweek": "0.1"
476
- },
477
- {
478
- "week_end": "2023-06-17",
479
- "pathogen": "COVID-19",
480
- "percent_deaths_selected_pathogen_currentweek": "1.1"
481
- },
482
- {
483
- "week_end": "2023-06-24",
484
- "pathogen": "Influenza",
485
- "percent_deaths_selected_pathogen_currentweek": "0.1"
486
- },
487
- {
488
- "week_end": "2023-06-24",
489
- "pathogen": "COVID-19",
490
- "percent_deaths_selected_pathogen_currentweek": "1.0"
491
- },
492
- {
493
- "week_end": "2023-07-01",
494
- "pathogen": "Influenza",
495
- "percent_deaths_selected_pathogen_currentweek": "0.0"
496
- },
497
- {
498
- "week_end": "2023-07-01",
499
- "pathogen": "COVID-19",
500
- "percent_deaths_selected_pathogen_currentweek": "1.0"
501
- },
502
- {
503
- "week_end": "2023-07-08",
504
- "pathogen": "Influenza",
505
- "percent_deaths_selected_pathogen_currentweek": "0.1"
506
- },
507
- {
508
- "week_end": "2023-07-08",
509
- "pathogen": "RSV",
510
- "percent_deaths_selected_pathogen_currentweek": "0.0"
511
- },
512
- {
513
- "week_end": "2023-07-08",
514
- "pathogen": "COVID-19",
515
- "percent_deaths_selected_pathogen_currentweek": "0.9"
516
- },
517
- {
518
- "week_end": "2023-07-15",
519
- "pathogen": "Influenza",
520
- "percent_deaths_selected_pathogen_currentweek": "0.0"
521
- },
522
- {
523
- "week_end": "2023-07-15",
524
- "pathogen": "RSV",
525
- "percent_deaths_selected_pathogen_currentweek": "0.0"
526
- },
527
- {
528
- "week_end": "2023-07-15",
529
- "pathogen": "COVID-19",
530
- "percent_deaths_selected_pathogen_currentweek": "0.9"
531
- },
532
- {
533
- "week_end": "2023-07-22",
534
- "pathogen": "Influenza",
535
- "percent_deaths_selected_pathogen_currentweek": "0.0"
536
- },
537
- {
538
- "week_end": "2023-07-22",
539
- "pathogen": "COVID-19",
540
- "percent_deaths_selected_pathogen_currentweek": "1.0"
541
- },
542
- {
543
- "week_end": "2023-07-29",
544
- "pathogen": "Influenza",
545
- "percent_deaths_selected_pathogen_currentweek": "0.0"
546
- },
547
- {
548
- "week_end": "2023-07-29",
549
- "pathogen": "RSV",
550
- "percent_deaths_selected_pathogen_currentweek": "0.0"
551
- },
552
- {
553
- "week_end": "2023-07-29",
554
- "pathogen": "COVID-19",
555
- "percent_deaths_selected_pathogen_currentweek": "1.0"
556
- },
557
- {
558
- "week_end": "2023-08-05",
559
- "pathogen": "Influenza",
560
- "percent_deaths_selected_pathogen_currentweek": "0.0"
561
- },
562
- {
563
- "week_end": "2023-08-05",
564
- "pathogen": "RSV",
565
- "percent_deaths_selected_pathogen_currentweek": "0.0"
566
- },
567
- {
568
- "week_end": "2023-08-05",
569
- "pathogen": "COVID-19",
570
- "percent_deaths_selected_pathogen_currentweek": "1.2"
571
- },
572
- {
573
- "week_end": "2023-08-12",
574
- "pathogen": "Influenza",
575
- "percent_deaths_selected_pathogen_currentweek": "0.0"
576
- },
577
- {
578
- "week_end": "2023-08-12",
579
- "pathogen": "COVID-19",
580
- "percent_deaths_selected_pathogen_currentweek": "1.3"
581
- },
582
- {
583
- "week_end": "2023-08-19",
584
- "pathogen": "Influenza",
585
- "percent_deaths_selected_pathogen_currentweek": "0.0"
586
- },
587
- {
588
- "week_end": "2023-08-19",
589
- "pathogen": "COVID-19",
590
- "percent_deaths_selected_pathogen_currentweek": "1.6"
591
- },
592
- {
593
- "week_end": "2023-08-26",
594
- "pathogen": "Influenza",
595
- "percent_deaths_selected_pathogen_currentweek": "0.0"
596
- },
597
- {
598
- "week_end": "2023-08-26",
599
- "pathogen": "RSV",
600
- "percent_deaths_selected_pathogen_currentweek": "0.0"
601
- },
602
- {
603
- "week_end": "2023-08-26",
604
- "pathogen": "COVID-19",
605
- "percent_deaths_selected_pathogen_currentweek": "1.9"
606
- },
607
- {
608
- "week_end": "2023-09-02",
609
- "pathogen": "Influenza",
610
- "percent_deaths_selected_pathogen_currentweek": "0.0"
611
- },
612
- {
613
- "week_end": "2023-09-02",
614
- "pathogen": "COVID-19",
615
- "percent_deaths_selected_pathogen_currentweek": "2.1"
616
- },
617
- {
618
- "week_end": "2023-09-09",
619
- "pathogen": "Influenza",
620
- "percent_deaths_selected_pathogen_currentweek": "0.1"
621
- },
622
- {
623
- "week_end": "2023-09-09",
624
- "pathogen": "COVID-19",
625
- "percent_deaths_selected_pathogen_currentweek": "2.3"
626
- },
627
- {
628
- "week_end": "2023-09-16",
629
- "pathogen": "Influenza",
630
- "percent_deaths_selected_pathogen_currentweek": "0.1"
631
- },
632
- {
633
- "week_end": "2023-09-16",
634
- "pathogen": "COVID-19",
635
- "percent_deaths_selected_pathogen_currentweek": "2.5"
636
- },
637
- {
638
- "week_end": "2023-09-23",
639
- "pathogen": "Influenza",
640
- "percent_deaths_selected_pathogen_currentweek": "0.0"
641
- },
642
- {
643
- "week_end": "2023-09-23",
644
- "pathogen": "COVID-19",
645
- "percent_deaths_selected_pathogen_currentweek": "2.5"
646
- },
647
- {
648
- "week_end": "2023-09-30",
649
- "pathogen": "Influenza",
650
- "percent_deaths_selected_pathogen_currentweek": "0.1"
651
- },
652
- {
653
- "week_end": "2023-09-30",
654
- "pathogen": "COVID-19",
655
- "percent_deaths_selected_pathogen_currentweek": "2.5"
656
- },
657
- {
658
- "week_end": "2023-10-07",
659
- "pathogen": "Influenza",
660
- "percent_deaths_selected_pathogen_currentweek": "0.0"
661
- },
662
- {
663
- "week_end": "2023-10-07",
664
- "pathogen": "COVID-19",
665
- "percent_deaths_selected_pathogen_currentweek": "2.4"
666
- },
667
- {
668
- "week_end": "2023-10-14",
669
- "pathogen": "Influenza",
670
- "percent_deaths_selected_pathogen_currentweek": "0.1"
671
- },
672
- {
673
- "week_end": "2023-10-14",
674
- "pathogen": "COVID-19",
675
- "percent_deaths_selected_pathogen_currentweek": "2.2"
676
- },
677
- {
678
- "week_end": "2023-10-21",
679
- "pathogen": "Influenza",
680
- "percent_deaths_selected_pathogen_currentweek": "0.1"
681
- },
682
- {
683
- "week_end": "2023-10-21",
684
- "pathogen": "COVID-19",
685
- "percent_deaths_selected_pathogen_currentweek": "2.4"
686
- },
687
- {
688
- "week_end": "2023-10-28",
689
- "pathogen": "Influenza",
690
- "percent_deaths_selected_pathogen_currentweek": "0.1"
691
- },
692
- {
693
- "week_end": "2023-10-28",
694
- "pathogen": "COVID-19",
695
- "percent_deaths_selected_pathogen_currentweek": "2.2"
696
- },
697
- {
698
- "week_end": "2023-11-04",
699
- "pathogen": "Influenza",
700
- "percent_deaths_selected_pathogen_currentweek": "0.1"
701
- },
702
- {
703
- "week_end": "2023-11-04",
704
- "pathogen": "COVID-19",
705
- "percent_deaths_selected_pathogen_currentweek": "2.1"
706
- },
707
- {
708
- "week_end": "2023-11-11",
709
- "pathogen": "Influenza",
710
- "percent_deaths_selected_pathogen_currentweek": "0.1"
711
- },
712
- {
713
- "week_end": "2023-11-11",
714
- "pathogen": "RSV",
715
- "percent_deaths_selected_pathogen_currentweek": "0.0"
716
- },
717
- {
718
- "week_end": "2023-11-11",
719
- "pathogen": "COVID-19",
720
- "percent_deaths_selected_pathogen_currentweek": "2.3"
721
- },
722
- {
723
- "week_end": "2023-11-18",
724
- "pathogen": "Influenza",
725
- "percent_deaths_selected_pathogen_currentweek": "0.1"
726
- },
727
- {
728
- "week_end": "2023-11-18",
729
- "pathogen": "COVID-19",
730
- "percent_deaths_selected_pathogen_currentweek": "2.4"
731
- },
732
- {
733
- "week_end": "2023-11-25",
734
- "pathogen": "Influenza",
735
- "percent_deaths_selected_pathogen_currentweek": "0.2"
736
- },
737
- {
738
- "week_end": "2023-11-25",
739
- "pathogen": "RSV",
740
- "percent_deaths_selected_pathogen_currentweek": "0.0"
741
- },
742
- {
743
- "week_end": "2023-11-25",
744
- "pathogen": "COVID-19",
745
- "percent_deaths_selected_pathogen_currentweek": "2.4"
746
- },
747
- {
748
- "week_end": "2023-12-02",
749
- "pathogen": "Influenza",
750
- "percent_deaths_selected_pathogen_currentweek": "0.2"
751
- },
752
- {
753
- "week_end": "2023-12-02",
754
- "pathogen": "RSV",
755
- "percent_deaths_selected_pathogen_currentweek": "0.0"
756
- },
757
- {
758
- "week_end": "2023-12-02",
759
- "pathogen": "COVID-19",
760
- "percent_deaths_selected_pathogen_currentweek": "2.8"
761
- },
762
- {
763
- "week_end": "2023-12-09",
764
- "pathogen": "Influenza",
765
- "percent_deaths_selected_pathogen_currentweek": "0.3"
766
- },
767
- {
768
- "week_end": "2023-12-09",
769
- "pathogen": "RSV",
770
- "percent_deaths_selected_pathogen_currentweek": "0.1"
771
- },
772
- {
773
- "week_end": "2023-12-09",
774
- "pathogen": "COVID-19",
775
- "percent_deaths_selected_pathogen_currentweek": "2.9"
776
- },
777
- {
778
- "week_end": "2023-12-16",
779
- "pathogen": "Influenza",
780
- "percent_deaths_selected_pathogen_currentweek": "0.4"
781
- },
782
- {
783
- "week_end": "2023-12-16",
784
- "pathogen": "RSV",
785
- "percent_deaths_selected_pathogen_currentweek": "0.1"
786
- },
787
- {
788
- "week_end": "2023-12-16",
789
- "pathogen": "COVID-19",
790
- "percent_deaths_selected_pathogen_currentweek": "3.0"
791
- },
792
- {
793
- "week_end": "2023-12-23",
794
- "pathogen": "Influenza",
795
- "percent_deaths_selected_pathogen_currentweek": "0.6"
796
- },
797
- {
798
- "week_end": "2023-12-23",
799
- "pathogen": "RSV",
800
- "percent_deaths_selected_pathogen_currentweek": "0.1"
801
- },
802
- {
803
- "week_end": "2023-12-23",
804
- "pathogen": "COVID-19",
805
- "percent_deaths_selected_pathogen_currentweek": "3.1"
806
- },
807
- {
808
- "week_end": "2023-12-30",
809
- "pathogen": "Influenza",
810
- "percent_deaths_selected_pathogen_currentweek": "0.9"
811
- },
812
- {
813
- "week_end": "2023-12-30",
814
- "pathogen": "RSV",
815
- "percent_deaths_selected_pathogen_currentweek": "0.1"
816
- },
817
- {
818
- "week_end": "2023-12-30",
819
- "pathogen": "COVID-19",
820
- "percent_deaths_selected_pathogen_currentweek": "3.5"
821
- }
822
- ]