@cdc/chart 4.23.10 → 4.24.1
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.
- package/dist/cdcchart.js +34606 -32218
- package/examples/feature/bar/additional-column-tooltip.json +446 -0
- package/examples/feature/bar/example-bar-chart.json +1 -46
- package/examples/feature/bar/lollipop.json +156 -0
- package/examples/feature/bar/tall-data.json +98 -0
- package/examples/feature/combo/planet-combo-example-config.json +99 -9
- package/examples/feature/dev-4261.json +399 -0
- package/examples/feature/forest-plot/forest-plot.json +63 -19
- package/examples/feature/forest-plot/{broken.json → linear.json} +77 -23
- package/examples/feature/forest-plot/log.json +26 -0
- package/examples/feature/forest-plot/logarithmic.json +271 -0
- package/examples/feature/line/line-chart-preliminary.json +346 -0
- package/examples/feature/line/line-points.json +340 -0
- package/examples/feature/regions/index.json +462 -0
- package/examples/feature/scatterplot/scatterplot.json +272 -33
- package/examples/gallery/bar-chart-vertical/combo-line-chart.json +181 -48
- package/examples/private/chart-t.json +3740 -0
- package/examples/private/combo.json +369 -0
- package/examples/private/epi-data.csv +13 -0
- package/examples/private/epi-data.json +62 -0
- package/examples/private/epi.json +403 -0
- package/examples/private/occupancy.json +109283 -0
- package/examples/private/prod-line-config.json +401 -0
- package/examples/private/region-data.json +822 -0
- package/examples/private/region-testing.json +312 -0
- package/examples/private/scaling.json +45325 -0
- package/examples/private/testing-data.json +1739 -0
- package/examples/private/testing.json +816 -0
- package/examples/sparkline-multilple.json +846 -0
- package/index.html +12 -8
- package/package.json +3 -3
- package/src/CdcChart.tsx +42 -211
- package/src/ConfigContext.tsx +6 -0
- package/src/_stories/Chart.stories.tsx +188 -0
- package/src/_stories/Chart.tooltip.stories.tsx +305 -0
- package/src/_stories/ChartBrush.stories.tsx +19 -0
- package/src/_stories/ChartEditor.stories.tsx +22 -0
- package/src/_stories/ChartLine.preliminary.tsx +19 -0
- package/src/_stories/ChartSuppress.stories.tsx +19 -0
- package/src/_stories/_mock/brush_mock.json +393 -0
- package/src/_stories/_mock/pie_config.json +191 -0
- package/src/_stories/_mock/pie_data.json +218 -0
- package/src/_stories/_mock/preliminary_mock.json +346 -0
- package/src/_stories/_mock/suppress_mock.json +911 -0
- package/src/components/{AreaChart.Stacked.jsx → AreaChart/components/AreaChart.Stacked.jsx} +6 -7
- package/src/components/{AreaChart.jsx → AreaChart/components/AreaChart.jsx} +7 -36
- package/src/components/AreaChart/index.tsx +4 -0
- package/src/components/{BarChart.Horizontal.jsx → BarChart/components/BarChart.Horizontal.tsx} +111 -34
- package/src/components/{BarChart.StackedHorizontal.jsx → BarChart/components/BarChart.StackedHorizontal.tsx} +55 -20
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +106 -0
- package/src/components/{BarChart.Vertical.jsx → BarChart/components/BarChart.Vertical.tsx} +162 -34
- package/src/components/BarChart/components/BarChart.jsx +39 -0
- package/src/components/{BarChartType.jsx → BarChart/components/BarChartType.jsx} +0 -2
- package/src/components/BarChart/components/context.tsx +13 -0
- package/src/components/BarChart/index.tsx +3 -0
- package/src/components/{BoxPlot.jsx → BoxPlot/BoxPlot.jsx} +1 -1
- package/src/components/BoxPlot/index.tsx +3 -0
- package/src/components/DeviationBar.jsx +4 -3
- package/src/components/{EditorPanel.jsx → EditorPanel/EditorPanel.tsx} +807 -865
- package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +109 -0
- package/src/components/{ForestPlotSettings.jsx → EditorPanel/components/Panel.ForestPlotSettings.tsx} +190 -220
- package/src/components/EditorPanel/components/Panel.Regions.tsx +168 -0
- package/src/components/{Series.jsx → EditorPanel/components/Panel.Series.tsx} +23 -4
- package/src/components/EditorPanel/components/PanelProps.ts +3 -0
- package/src/components/EditorPanel/components/Panels.tsx +13 -0
- package/src/components/EditorPanel/components/panels.scss +72 -0
- package/src/components/EditorPanel/editor-panel.scss +751 -0
- package/src/components/EditorPanel/index.tsx +3 -0
- package/src/{hooks → components/EditorPanel}/useEditorPermissions.js +50 -5
- package/src/components/{Forecasting.jsx → Forecasting/Forecasting.jsx} +1 -1
- package/src/components/Forecasting/index.tsx +3 -0
- package/src/components/ForestPlot/ForestPlot.tsx +254 -0
- package/src/components/ForestPlot/ForestPlotProps.ts +18 -0
- package/src/components/ForestPlot/index.scss +1 -0
- package/src/components/ForestPlot/index.tsx +3 -0
- package/src/components/Legend/Legend.tsx +347 -0
- package/src/components/Legend/index.tsx +3 -0
- package/src/components/LineChart/LineChartProps.ts +46 -0
- package/src/components/{LineChart.Circle.tsx → LineChart/components/LineChart.Circle.tsx} +36 -30
- package/src/components/LineChart/helpers.ts +45 -0
- package/src/components/LineChart/index.scss +1 -0
- package/src/components/{LineChart.tsx → LineChart/index.tsx} +83 -42
- package/src/components/LinearChart.jsx +125 -82
- package/src/components/PairedBarChart.jsx +2 -2
- package/src/components/{PieChart.jsx → PieChart/PieChart.tsx} +16 -7
- package/src/components/PieChart/index.tsx +3 -0
- package/src/components/Regions/components/Regions.tsx +135 -0
- package/src/components/Regions/index.tsx +3 -0
- package/src/components/{ScatterPlot.jsx → ScatterPlot/ScatterPlot.jsx} +3 -3
- package/src/components/ScatterPlot/index.tsx +3 -0
- package/src/components/{SparkLine.jsx → Sparkline/SparkLine.jsx} +2 -2
- package/src/components/Sparkline/index.tsx +3 -0
- package/src/components/ZoomBrush.tsx +168 -0
- package/src/data/initial-state.js +30 -16
- package/src/helpers/abbreviateNumber.ts +17 -0
- package/src/helpers/computeMarginBottom.ts +55 -0
- package/src/helpers/filterData.ts +18 -0
- package/src/helpers/generateColorsArray.ts +8 -0
- package/src/helpers/getQuartiles.ts +30 -0
- package/src/helpers/handleChartAriaLabels.ts +19 -0
- package/src/helpers/handleLineType.ts +18 -0
- package/src/helpers/lineOptions.ts +18 -0
- package/src/helpers/sort.ts +7 -0
- package/src/helpers/tests/computeMarginBottom.test.ts +20 -0
- package/src/hooks/useBarChart.js +72 -7
- package/src/hooks/useColorScale.ts +50 -0
- package/src/hooks/{useMinMax.js → useMinMax.ts} +75 -23
- package/src/hooks/{useRightAxis.js → useRightAxis.ts} +10 -2
- package/src/hooks/{useScales.js → useScales.ts} +64 -17
- package/src/hooks/{useTooltip.jsx → useTooltip.tsx} +84 -55
- package/src/scss/main.scss +70 -38
- package/src/types/ChartConfig.ts +178 -0
- package/src/types/ChartContext.ts +54 -0
- package/src/types/ForestPlot.ts +53 -0
- package/examples/feature/scatterplot/scatterplot-continuous.csv +0 -17
- package/src/ConfigContext.jsx +0 -5
- package/src/components/BarChart.StackedVertical.jsx +0 -95
- package/src/components/BarChart.jsx +0 -30
- package/src/components/ForestPlot.jsx +0 -191
- package/src/components/Legend.jsx +0 -277
- package/src/scss/LinearChart.scss +0 -0
- package/src/scss/editor-panel.scss +0 -745
- package/src/scss/legend.scss +0 -206
- package/src/scss/mixins.scss +0 -0
- package/src/scss/variables.scss +0 -1
|
@@ -0,0 +1,822 @@
|
|
|
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
|
+
]
|