@cdc/chart 4.24.10 → 4.24.12

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 (93) hide show
  1. package/dist/cdcchart.js +34651 -33978
  2. package/examples/feature/boxplot/boxplot-data.json +88 -22
  3. package/examples/feature/boxplot/boxplot.json +540 -16
  4. package/examples/feature/boxplot/testing.csv +7 -7
  5. package/examples/feature/sankey/sankey-example-data.json +126 -14
  6. package/examples/feature/tests-date-exclusions/date-exclusions-config.json +372 -12
  7. package/examples/private/DEV-8850-2.json +493 -0
  8. package/examples/private/DEV-9822.json +574 -0
  9. package/examples/private/DEV-9840.json +553 -0
  10. package/examples/private/DEV-9850-3.json +461 -0
  11. package/examples/private/chart.json +1084 -0
  12. package/examples/private/ci_formatted.json +202 -0
  13. package/examples/private/ci_issue.json +3016 -0
  14. package/examples/private/completed.json +634 -0
  15. package/examples/private/dem-data-long.csv +20 -0
  16. package/examples/private/dem-data-long.json +36 -0
  17. package/examples/private/demographic_data.csv +157 -0
  18. package/examples/private/demographic_data.json +2654 -0
  19. package/examples/private/demographic_dynamic.json +443 -0
  20. package/examples/private/demographic_standard.json +560 -0
  21. package/examples/private/test.json +493 -0
  22. package/index.html +10 -7
  23. package/package.json +2 -2
  24. package/src/CdcChart.tsx +132 -152
  25. package/src/_stories/Chart.Anchors.stories.tsx +31 -0
  26. package/src/_stories/Chart.CustomColors.stories.tsx +19 -0
  27. package/src/_stories/Chart.DynamicSeries.stories.tsx +34 -0
  28. package/src/_stories/Chart.Legend.Gradient.stories.tsx +42 -1
  29. package/src/_stories/Chart.stories.tsx +37 -6
  30. package/src/_stories/ChartAxisLabels.stories.tsx +4 -1
  31. package/src/_stories/ChartEditor.stories.tsx +27 -0
  32. package/src/_stories/ChartLine.Suppression.stories.tsx +25 -0
  33. package/src/_stories/ChartPrefixSuffix.stories.tsx +8 -0
  34. package/{examples/feature/area/area-chart-date-city-temperature.json → src/_stories/_mock/area_chart_stacked.json} +125 -27
  35. package/src/_stories/_mock/boxplot_multiseries.json +647 -0
  36. package/src/_stories/_mock/dynamic_series_bar_config.json +723 -0
  37. package/src/_stories/_mock/dynamic_series_config.json +979 -0
  38. package/src/_stories/_mock/line_chart_dynamic_ci.json +493 -0
  39. package/src/_stories/_mock/line_chart_non_dynamic_ci.json +522 -0
  40. package/{examples/feature/scatterplot/scatterplot.json → src/_stories/_mock/scatterplot_mock.json} +62 -92
  41. package/src/_stories/_mock/short_dates.json +288 -0
  42. package/src/_stories/_mock/suppression_mock.json +1549 -0
  43. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +15 -3
  44. package/src/components/Axis/Categorical.Axis.tsx +2 -2
  45. package/src/components/BarChart/components/BarChart.Horizontal.tsx +46 -37
  46. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +43 -9
  47. package/src/components/BarChart/components/BarChart.Vertical.tsx +53 -47
  48. package/src/components/BarChart/helpers/getBarData.ts +28 -0
  49. package/src/components/BarChart/helpers/index.ts +1 -2
  50. package/src/components/BarChart/helpers/tests/getBarData.test.ts +74 -0
  51. package/src/components/BoxPlot/BoxPlot.tsx +131 -0
  52. package/src/components/BoxPlot/helpers/index.ts +54 -0
  53. package/src/components/BrushChart.tsx +23 -26
  54. package/src/components/EditorPanel/EditorPanel.tsx +117 -139
  55. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +3 -3
  56. package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +51 -6
  57. package/src/components/EditorPanel/components/Panels/Panel.Regions.tsx +40 -9
  58. package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +3 -3
  59. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +122 -56
  60. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +1 -2
  61. package/src/components/EditorPanel/useEditorPermissions.ts +20 -2
  62. package/src/components/Legend/Legend.Component.tsx +11 -12
  63. package/src/components/Legend/Legend.tsx +16 -16
  64. package/src/components/Legend/helpers/getLegendClasses.ts +59 -0
  65. package/src/components/Legend/helpers/index.ts +2 -1
  66. package/src/components/Legend/tests/getLegendClasses.test.ts +115 -0
  67. package/src/components/LineChart/components/LineChart.Circle.tsx +1 -1
  68. package/src/components/LineChart/helpers.ts +49 -43
  69. package/src/components/LineChart/index.tsx +135 -83
  70. package/src/components/LinearChart.tsx +187 -181
  71. package/src/components/PieChart/PieChart.tsx +7 -1
  72. package/src/components/Sankey/components/ColumnList.tsx +19 -0
  73. package/src/components/Sankey/components/Sankey.tsx +479 -0
  74. package/src/components/Sankey/helpers/getSankeyTooltip.tsx +33 -0
  75. package/src/components/Sankey/index.tsx +1 -492
  76. package/src/components/Sankey/sankey.scss +22 -21
  77. package/src/components/Sankey/types/index.ts +1 -1
  78. package/src/components/Sankey/useSankeyAlert.tsx +60 -0
  79. package/src/components/ScatterPlot/ScatterPlot.jsx +20 -4
  80. package/src/data/initial-state.js +7 -12
  81. package/src/helpers/countNumOfTicks.ts +57 -0
  82. package/src/helpers/getQuartiles.ts +15 -18
  83. package/src/hooks/useMinMax.ts +44 -16
  84. package/src/hooks/useReduceData.ts +43 -10
  85. package/src/hooks/useScales.ts +90 -35
  86. package/src/hooks/useTooltip.tsx +59 -50
  87. package/src/scss/DataTable.scss +5 -0
  88. package/src/scss/main.scss +6 -20
  89. package/src/types/ChartConfig.ts +6 -19
  90. package/src/types/ChartContext.ts +4 -1
  91. package/src/types/ForestPlot.ts +8 -0
  92. package/src/components/BoxPlot/BoxPlot.jsx +0 -111
  93. package/src/hooks/useLegendClasses.ts +0 -72
@@ -0,0 +1,1549 @@
1
+ {
2
+ "annotations": [],
3
+ "type": "chart",
4
+ "debugSvg": false,
5
+ "chartMessage": { "noData": "No Data Available" },
6
+ "title": "",
7
+ "showTitle": true,
8
+ "showDownloadMediaButton": false,
9
+ "theme": "theme-blue",
10
+ "animate": false,
11
+ "fontSize": "medium",
12
+ "lineDatapointStyle": "hover",
13
+ "lineDatapointColor": "Same as Line",
14
+ "barHasBorder": "false",
15
+ "isLollipopChart": false,
16
+ "lollipopShape": "circle",
17
+ "lollipopColorStyle": "two-tone",
18
+ "visualizationSubType": "regular",
19
+ "barStyle": "flat",
20
+ "roundingStyle": "standard",
21
+ "tipRounding": "top",
22
+ "isResponsiveTicks": false,
23
+ "general": {
24
+ "annotationDropdownText": "Annotations",
25
+ "showDownloadButton": false,
26
+ "showMissingDataLabel": true,
27
+ "showSuppressedSymbol": true,
28
+ "showZeroValueData": true,
29
+ "hideNullValue": true
30
+ },
31
+ "padding": { "left": 5, "right": 5 },
32
+ "preliminaryData": [
33
+ {
34
+ "type": "suppression",
35
+ "seriesKey": "",
36
+ "label": "Suppressed",
37
+ "column": "",
38
+ "value": "XYZ",
39
+ "style": "Dashed Small",
40
+ "displayTooltip": true,
41
+ "displayLegend": true,
42
+ "displayTable": true,
43
+ "symbol": "",
44
+ "iconCode": "",
45
+ "lineCode": "- - -",
46
+ "hideBarSymbol": false,
47
+ "hideLineStyle": false,
48
+ "circleSize": 6,
49
+ "displayGray": true
50
+ }
51
+ ],
52
+ "yAxis": {
53
+ "hideAxis": false,
54
+ "displayNumbersOnBar": false,
55
+ "hideLabel": false,
56
+ "hideTicks": false,
57
+ "size": 50,
58
+ "gridLines": false,
59
+ "enablePadding": false,
60
+ "min": "",
61
+ "max": "",
62
+ "labelColor": "#333",
63
+ "tickLabelColor": "#333",
64
+ "tickColor": "#333",
65
+ "rightHideAxis": true,
66
+ "rightAxisSize": 0,
67
+ "rightLabel": "",
68
+ "rightLabelOffsetSize": 0,
69
+ "rightAxisLabelColor": "#333",
70
+ "rightAxisTickLabelColor": "#333",
71
+ "rightAxisTickColor": "#333",
72
+ "numTicks": "",
73
+ "axisPadding": 0,
74
+ "scalePadding": 10,
75
+ "tickRotation": 0,
76
+ "anchors": [],
77
+ "shoMissingDataLabel": true,
78
+ "showMissingDataLine": true,
79
+ "categories": [],
80
+ "maxValue": 5.58
81
+ },
82
+ "boxplot": {
83
+ "plots": [],
84
+ "borders": "true",
85
+ "firstQuartilePercentage": 25,
86
+ "thirdQuartilePercentage": 75,
87
+ "boxWidthPercentage": 40,
88
+ "plotOutlierValues": false,
89
+ "plotNonOutlierValues": true,
90
+ "legend": { "showHowToReadText": false, "howToReadText": "" },
91
+ "labels": {
92
+ "q1": "Lower Quartile",
93
+ "q2": "q2",
94
+ "q3": "Upper Quartile",
95
+ "q4": "q4",
96
+ "minimum": "Minimum",
97
+ "maximum": "Maximum",
98
+ "mean": "Mean",
99
+ "median": "Median",
100
+ "sd": "Standard Deviation",
101
+ "iqr": "Interquartile Range",
102
+ "total": "Total",
103
+ "outliers": "Outliers",
104
+ "values": "Values",
105
+ "lowerBounds": "Lower Bounds",
106
+ "upperBounds": "Upper Bounds"
107
+ }
108
+ },
109
+ "topAxis": { "hasLine": false },
110
+ "isLegendValue": false,
111
+ "barThickness": 0.35,
112
+ "barHeight": 25,
113
+ "barSpace": 15,
114
+ "heights": { "vertical": 300, "horizontal": 750 },
115
+ "xAxis": {
116
+ "sortDates": false,
117
+ "anchors": [],
118
+ "type": "date",
119
+ "showTargetLabel": true,
120
+ "targetLabel": "Target",
121
+ "hideAxis": false,
122
+ "hideLabel": false,
123
+ "hideTicks": false,
124
+ "size": 75,
125
+ "tickRotation": 0,
126
+ "min": "",
127
+ "max": "",
128
+ "labelColor": "#333",
129
+ "tickLabelColor": "#333",
130
+ "tickColor": "#333",
131
+ "numTicks": "",
132
+ "labelOffset": 0,
133
+ "axisPadding": 200,
134
+ "target": 0,
135
+ "maxTickRotation": 0,
136
+ "padding": 6,
137
+ "showYearsOnce": false,
138
+ "dataKey": "week_end",
139
+ "label": "Week End",
140
+ "dateParseFormat": "%m/%d/%Y",
141
+ "dateDisplayFormat": "%m/%d/%Y",
142
+ "axisBBox": 0,
143
+ "tickWidthMax": 91
144
+ },
145
+ "table": {
146
+ "label": "Data Table",
147
+ "expanded": true,
148
+ "limitHeight": false,
149
+ "height": "",
150
+ "caption": "",
151
+ "showDownloadUrl": false,
152
+ "showDataTableLink": true,
153
+ "showDownloadLinkBelow": true,
154
+ "indexLabel": "",
155
+ "download": true,
156
+ "showVertical": true,
157
+ "dateDisplayFormat": "",
158
+ "showMissingDataLabel": true,
159
+ "showSuppressedSymbol": true,
160
+ "show": true
161
+ },
162
+ "orientation": "vertical",
163
+ "color": "pinkpurple",
164
+ "columns": {},
165
+ "legend": {
166
+ "hide": false,
167
+ "behavior": "isolate",
168
+ "axisAlign": true,
169
+ "singleRow": true,
170
+ "colorCode": "",
171
+ "reverseLabelOrder": false,
172
+ "description": "",
173
+ "dynamicLegend": false,
174
+ "dynamicLegendDefaultText": "Show All",
175
+ "dynamicLegendItemLimit": 5,
176
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
177
+ "dynamicLegendChartMessage": "Select Options from the Legend",
178
+ "label": "",
179
+ "lineMode": false,
180
+ "verticalSorted": false,
181
+ "highlightOnHover": false,
182
+ "hideSuppressedLabels": false,
183
+ "hideSuppressionLink": false,
184
+ "seriesHighlight": [],
185
+ "style": "circles",
186
+ "subStyle": "linear blocks",
187
+ "tickRotation": "",
188
+ "hideBorder": { "side": false, "topBottom": true }
189
+ },
190
+ "brush": { "height": 25, "active": false },
191
+ "exclusions": { "active": false, "keys": [] },
192
+ "palette": "qualitative-bold",
193
+ "isPaletteReversed": false,
194
+ "twoColor": { "palette": "monochrome-1", "isPaletteReversed": false },
195
+ "labels": false,
196
+ "dataFormat": {
197
+ "commas": false,
198
+ "prefix": "",
199
+ "suffix": "",
200
+ "abbreviated": false,
201
+ "bottomSuffix": "",
202
+ "bottomPrefix": "",
203
+ "bottomAbbreviated": false
204
+ },
205
+ "confidenceKeys": {},
206
+ "visual": {
207
+ "border": true,
208
+ "accent": true,
209
+ "background": true,
210
+ "verticalHoverLine": false,
211
+ "horizontalHoverLine": false
212
+ },
213
+ "useLogScale": false,
214
+ "filterBehavior": "Filter Change",
215
+ "highlightedBarValues": [],
216
+ "series": [
217
+ { "dataKey": "cc65+ years", "type": "Line", "axis": "Left", "tooltip": true },
218
+ { "dataKey": "cc18-64 years", "type": "Line", "axis": "Left", "tooltip": true },
219
+ { "dataKey": "cc0-17 years", "type": "Line", "axis": "Left", "tooltip": true }
220
+ ],
221
+ "tooltips": { "opacity": 90, "singleSeries": false, "dateDisplayFormat": "" },
222
+ "forestPlot": {
223
+ "startAt": 0,
224
+ "colors": { "line": "", "shape": "" },
225
+ "lineOfNoEffect": { "show": true },
226
+ "type": "",
227
+ "pooledResult": { "diamondHeight": 5, "column": "" },
228
+ "estimateField": "",
229
+ "estimateRadius": "",
230
+ "shape": "square",
231
+ "rowHeight": 20,
232
+ "description": { "show": true, "text": "description", "location": 0 },
233
+ "result": { "show": true, "text": "result", "location": 100 },
234
+ "radius": { "min": 2, "max": 10, "scalingColumn": "" },
235
+ "regression": { "lower": 0, "upper": 0, "estimateField": 0 },
236
+ "leftWidthOffset": 0,
237
+ "rightWidthOffset": 0,
238
+ "showZeroLine": false,
239
+ "leftLabel": "",
240
+ "rightLabel": ""
241
+ },
242
+ "area": { "isStacked": false },
243
+ "sankey": {
244
+ "title": { "defaultColor": "black" },
245
+ "iterations": 1,
246
+ "rxValue": 0.9,
247
+ "overallSize": { "width": 900, "height": 700 },
248
+ "margin": { "margin_y": 25, "margin_x": 0 },
249
+ "nodeSize": { "nodeWidth": 26, "nodeHeight": 40 },
250
+ "nodePadding": 55,
251
+ "nodeFontColor": "black",
252
+ "nodeColor": { "default": "#ff8500", "inactive": "#808080" },
253
+ "linkColor": { "default": "#ffc900", "inactive": "#D3D3D3" },
254
+ "opacity": {
255
+ "nodeOpacityDefault": 1,
256
+ "nodeOpacityInactive": 0.1,
257
+ "LinkOpacityDefault": 1,
258
+ "LinkOpacityInactive": 0.1
259
+ },
260
+ "storyNodeFontColor": "#006778",
261
+ "storyNodeText": [],
262
+ "nodeValueStyle": { "textBefore": "(", "textAfter": ")" },
263
+ "data": []
264
+ },
265
+ "visualizationType": "Line",
266
+ "data": [
267
+ {
268
+ "week_end": "10/7/2023",
269
+ "pathogen": "Combined",
270
+ "cc65+ years": "2.92",
271
+ "cc18-64 years": "1.14",
272
+ "cc0-17 years": "XYZ"
273
+ },
274
+ {
275
+ "week_end": "10/7/2023",
276
+ "pathogen": "COVID-19",
277
+ "cc65+ years": "2.87",
278
+ "cc18-64 years": "1.1",
279
+ "cc0-17 years": "XYZ"
280
+ },
281
+ {
282
+ "week_end": "10/7/2023",
283
+ "pathogen": "Influenza",
284
+ "cc65+ years": "0.04",
285
+ "cc18-64 years": "XYZ",
286
+ "cc0-17 years": "XYZ"
287
+ },
288
+ { "week_end": "10/7/2023", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
289
+ {
290
+ "week_end": "10/14/2023",
291
+ "pathogen": "Combined",
292
+ "cc65+ years": "2.68",
293
+ "cc18-64 years": "1.26",
294
+ "cc0-17 years": "XYZ"
295
+ },
296
+ {
297
+ "week_end": "10/14/2023",
298
+ "pathogen": "COVID-19",
299
+ "cc65+ years": "2.63",
300
+ "cc18-64 years": "1.17",
301
+ "cc0-17 years": "XYZ"
302
+ },
303
+ {
304
+ "week_end": "10/14/2023",
305
+ "pathogen": "Influenza",
306
+ "cc65+ years": "0.05",
307
+ "cc18-64 years": "0.09",
308
+ "cc0-17 years": "0"
309
+ },
310
+ { "week_end": "10/14/2023", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
311
+ {
312
+ "week_end": "10/21/2023",
313
+ "pathogen": "Combined",
314
+ "cc65+ years": "2.91",
315
+ "cc18-64 years": "1.18",
316
+ "cc0-17 years": "XYZ"
317
+ },
318
+ {
319
+ "week_end": "10/21/2023",
320
+ "pathogen": "COVID-19",
321
+ "cc65+ years": "2.82",
322
+ "cc18-64 years": "1.1",
323
+ "cc0-17 years": "XYZ"
324
+ },
325
+ {
326
+ "week_end": "10/21/2023",
327
+ "pathogen": "Influenza",
328
+ "cc65+ years": "0.08",
329
+ "cc18-64 years": "0.07",
330
+ "cc0-17 years": "XYZ"
331
+ },
332
+ { "week_end": "10/21/2023", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
333
+ {
334
+ "week_end": "10/28/2023",
335
+ "pathogen": "Combined",
336
+ "cc65+ years": "2.74",
337
+ "cc18-64 years": "0.99",
338
+ "cc0-17 years": "XYZ"
339
+ },
340
+ {
341
+ "week_end": "10/28/2023",
342
+ "pathogen": "COVID-19",
343
+ "cc65+ years": "2.64",
344
+ "cc18-64 years": "0.92",
345
+ "cc0-17 years": "XYZ"
346
+ },
347
+ {
348
+ "week_end": "10/28/2023",
349
+ "pathogen": "Influenza",
350
+ "cc65+ years": "0.08",
351
+ "cc18-64 years": "XYZ",
352
+ "cc0-17 years": "XYZ"
353
+ },
354
+ { "week_end": "10/28/2023", "pathogen": "RSV", "cc65+ years": "0.02", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
355
+ {
356
+ "week_end": "11/4/2023",
357
+ "pathogen": "Combined",
358
+ "cc65+ years": "2.64",
359
+ "cc18-64 years": "1",
360
+ "cc0-17 years": "XYZ"
361
+ },
362
+ {
363
+ "week_end": "11/4/2023",
364
+ "pathogen": "COVID-19",
365
+ "cc65+ years": "2.54",
366
+ "cc18-64 years": "0.86",
367
+ "cc0-17 years": "XYZ"
368
+ },
369
+ {
370
+ "week_end": "11/4/2023",
371
+ "pathogen": "Influenza",
372
+ "cc65+ years": "0.09",
373
+ "cc18-64 years": "0.15",
374
+ "cc0-17 years": "XYZ"
375
+ },
376
+ { "week_end": "11/4/2023", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
377
+ {
378
+ "week_end": "11/11/2023",
379
+ "pathogen": "Combined",
380
+ "cc65+ years": "2.87",
381
+ "cc18-64 years": "1.12",
382
+ "cc0-17 years": "1.46"
383
+ },
384
+ {
385
+ "week_end": "11/11/2023",
386
+ "pathogen": "COVID-19",
387
+ "cc65+ years": "2.75",
388
+ "cc18-64 years": "0.97",
389
+ "cc0-17 years": "XYZ"
390
+ },
391
+ {
392
+ "week_end": "11/11/2023",
393
+ "pathogen": "Influenza",
394
+ "cc65+ years": "0.1",
395
+ "cc18-64 years": "0.12",
396
+ "cc0-17 years": "XYZ"
397
+ },
398
+ {
399
+ "week_end": "11/11/2023",
400
+ "pathogen": "RSV",
401
+ "cc65+ years": "0.02",
402
+ "cc18-64 years": "XYZ",
403
+ "cc0-17 years": "XYZ"
404
+ },
405
+ {
406
+ "week_end": "11/18/2023",
407
+ "pathogen": "Combined",
408
+ "cc65+ years": "2.92",
409
+ "cc18-64 years": "1.38",
410
+ "cc0-17 years": "3.43"
411
+ },
412
+ {
413
+ "week_end": "11/18/2023",
414
+ "pathogen": "COVID-19",
415
+ "cc65+ years": "2.8",
416
+ "cc18-64 years": "1.17",
417
+ "cc0-17 years": "XYZ"
418
+ },
419
+ {
420
+ "week_end": "11/18/2023",
421
+ "pathogen": "Influenza",
422
+ "cc65+ years": "0.09",
423
+ "cc18-64 years": "0.2",
424
+ "cc0-17 years": "1.79"
425
+ },
426
+ {
427
+ "week_end": "11/18/2023",
428
+ "pathogen": "RSV",
429
+ "cc65+ years": "0.04",
430
+ "cc18-64 years": "XYZ",
431
+ "cc0-17 years": "XYZ"
432
+ },
433
+ {
434
+ "week_end": "11/25/2023",
435
+ "pathogen": "Combined",
436
+ "cc65+ years": "2.98",
437
+ "cc18-64 years": "1.47",
438
+ "cc0-17 years": "1.55"
439
+ },
440
+ {
441
+ "week_end": "11/25/2023",
442
+ "pathogen": "COVID-19",
443
+ "cc65+ years": "2.82",
444
+ "cc18-64 years": "1.14",
445
+ "cc0-17 years": "XYZ"
446
+ },
447
+ {
448
+ "week_end": "11/25/2023",
449
+ "pathogen": "Influenza",
450
+ "cc65+ years": "0.14",
451
+ "cc18-64 years": "0.29",
452
+ "cc0-17 years": "XYZ"
453
+ },
454
+ {
455
+ "week_end": "11/25/2023",
456
+ "pathogen": "RSV",
457
+ "cc65+ years": "0.04",
458
+ "cc18-64 years": "XYZ",
459
+ "cc0-17 years": "XYZ"
460
+ },
461
+ {
462
+ "week_end": "12/2/2023",
463
+ "pathogen": "Combined",
464
+ "cc65+ years": "3.54",
465
+ "cc18-64 years": "1.68",
466
+ "cc0-17 years": "2.05"
467
+ },
468
+ {
469
+ "week_end": "12/2/2023",
470
+ "pathogen": "COVID-19",
471
+ "cc65+ years": "3.26",
472
+ "cc18-64 years": "1.38",
473
+ "cc0-17 years": "XYZ"
474
+ },
475
+ {
476
+ "week_end": "12/2/2023",
477
+ "pathogen": "Influenza",
478
+ "cc65+ years": "0.24",
479
+ "cc18-64 years": "0.26",
480
+ "cc0-17 years": "XYZ"
481
+ },
482
+ {
483
+ "week_end": "12/2/2023",
484
+ "pathogen": "RSV",
485
+ "cc65+ years": "0.05",
486
+ "cc18-64 years": "XYZ",
487
+ "cc0-17 years": "XYZ"
488
+ },
489
+ {
490
+ "week_end": "12/9/2023",
491
+ "pathogen": "Combined",
492
+ "cc65+ years": "3.64",
493
+ "cc18-64 years": "1.95",
494
+ "cc0-17 years": "2.39"
495
+ },
496
+ {
497
+ "week_end": "12/9/2023",
498
+ "pathogen": "COVID-19",
499
+ "cc65+ years": "3.31",
500
+ "cc18-64 years": "1.42",
501
+ "cc0-17 years": "XYZ"
502
+ },
503
+ {
504
+ "week_end": "12/9/2023",
505
+ "pathogen": "Influenza",
506
+ "cc65+ years": "0.26",
507
+ "cc18-64 years": "0.47",
508
+ "cc0-17 years": "XYZ"
509
+ },
510
+ {
511
+ "week_end": "12/9/2023",
512
+ "pathogen": "RSV",
513
+ "cc65+ years": "0.08",
514
+ "cc18-64 years": "XYZ",
515
+ "cc0-17 years": "XYZ"
516
+ },
517
+ {
518
+ "week_end": "12/16/2023",
519
+ "pathogen": "Combined",
520
+ "cc65+ years": "3.92",
521
+ "cc18-64 years": "1.99",
522
+ "cc0-17 years": "3.82"
523
+ },
524
+ {
525
+ "week_end": "12/16/2023",
526
+ "pathogen": "COVID-19",
527
+ "cc65+ years": "3.45",
528
+ "cc18-64 years": "1.38",
529
+ "cc0-17 years": "XYZ"
530
+ },
531
+ {
532
+ "week_end": "12/16/2023",
533
+ "pathogen": "Influenza",
534
+ "cc65+ years": "0.38",
535
+ "cc18-64 years": "0.57",
536
+ "cc0-17 years": "2.4"
537
+ },
538
+ {
539
+ "week_end": "12/16/2023",
540
+ "pathogen": "RSV",
541
+ "cc65+ years": "0.1",
542
+ "cc18-64 years": "XYZ",
543
+ "cc0-17 years": "XYZ"
544
+ },
545
+ {
546
+ "week_end": "12/23/2023",
547
+ "pathogen": "Combined",
548
+ "cc65+ years": "4.17",
549
+ "cc18-64 years": "2.45",
550
+ "cc0-17 years": "3.82"
551
+ },
552
+ {
553
+ "week_end": "12/23/2023",
554
+ "pathogen": "COVID-19",
555
+ "cc65+ years": "3.55",
556
+ "cc18-64 years": "1.33",
557
+ "cc0-17 years": "XYZ"
558
+ },
559
+ {
560
+ "week_end": "12/23/2023",
561
+ "pathogen": "Influenza",
562
+ "cc65+ years": "0.55",
563
+ "cc18-64 years": "1.07",
564
+ "cc0-17 years": "2.83"
565
+ },
566
+ {
567
+ "week_end": "12/23/2023",
568
+ "pathogen": "RSV",
569
+ "cc65+ years": "0.1",
570
+ "cc18-64 years": "0.07",
571
+ "cc0-17 years": "XYZ"
572
+ },
573
+ {
574
+ "week_end": "12/30/2023",
575
+ "pathogen": "Combined",
576
+ "cc65+ years": "4.93",
577
+ "cc18-64 years": "3.41",
578
+ "cc0-17 years": "3.36"
579
+ },
580
+ {
581
+ "week_end": "12/30/2023",
582
+ "pathogen": "COVID-19",
583
+ "cc65+ years": "4",
584
+ "cc18-64 years": "1.67",
585
+ "cc0-17 years": "XYZ"
586
+ },
587
+ {
588
+ "week_end": "12/30/2023",
589
+ "pathogen": "Influenza",
590
+ "cc65+ years": "0.84",
591
+ "cc18-64 years": "1.69",
592
+ "cc0-17 years": "1.96"
593
+ },
594
+ {
595
+ "week_end": "12/30/2023",
596
+ "pathogen": "RSV",
597
+ "cc65+ years": "0.12",
598
+ "cc18-64 years": "0.08",
599
+ "cc0-17 years": "XYZ"
600
+ },
601
+ {
602
+ "week_end": "1/6/2024",
603
+ "pathogen": "Combined",
604
+ "cc65+ years": "5.58",
605
+ "cc18-64 years": "3.6",
606
+ "cc0-17 years": "4.95"
607
+ },
608
+ {
609
+ "week_end": "1/6/2024",
610
+ "pathogen": "COVID-19",
611
+ "cc65+ years": "4.3",
612
+ "cc18-64 years": "1.96",
613
+ "cc0-17 years": "XYZ"
614
+ },
615
+ {
616
+ "week_end": "1/6/2024",
617
+ "pathogen": "Influenza",
618
+ "cc65+ years": "1.2",
619
+ "cc18-64 years": "1.58",
620
+ "cc0-17 years": "3.45"
621
+ },
622
+ {
623
+ "week_end": "1/6/2024",
624
+ "pathogen": "RSV",
625
+ "cc65+ years": "0.13",
626
+ "cc18-64 years": "0.11",
627
+ "cc0-17 years": "XYZ"
628
+ },
629
+ {
630
+ "week_end": "1/13/2024",
631
+ "pathogen": "Combined",
632
+ "cc65+ years": "5.57",
633
+ "cc18-64 years": "3.57",
634
+ "cc0-17 years": "2.95"
635
+ },
636
+ {
637
+ "week_end": "1/13/2024",
638
+ "pathogen": "COVID-19",
639
+ "cc65+ years": "4.39",
640
+ "cc18-64 years": "1.91",
641
+ "cc0-17 years": "XYZ"
642
+ },
643
+ {
644
+ "week_end": "1/13/2024",
645
+ "pathogen": "Influenza",
646
+ "cc65+ years": "1.12",
647
+ "cc18-64 years": "1.61",
648
+ "cc0-17 years": "1.92"
649
+ },
650
+ {
651
+ "week_end": "1/13/2024",
652
+ "pathogen": "RSV",
653
+ "cc65+ years": "0.11",
654
+ "cc18-64 years": "0.1",
655
+ "cc0-17 years": "XYZ"
656
+ },
657
+ {
658
+ "week_end": "1/20/2024",
659
+ "pathogen": "Combined",
660
+ "cc65+ years": "5.06",
661
+ "cc18-64 years": "3.25",
662
+ "cc0-17 years": "3.17"
663
+ },
664
+ {
665
+ "week_end": "1/20/2024",
666
+ "pathogen": "COVID-19",
667
+ "cc65+ years": "4.05",
668
+ "cc18-64 years": "1.95",
669
+ "cc0-17 years": "XYZ"
670
+ },
671
+ {
672
+ "week_end": "1/20/2024",
673
+ "pathogen": "Influenza",
674
+ "cc65+ years": "0.97",
675
+ "cc18-64 years": "1.28",
676
+ "cc0-17 years": "1.9"
677
+ },
678
+ {
679
+ "week_end": "1/20/2024",
680
+ "pathogen": "RSV",
681
+ "cc65+ years": "0.08",
682
+ "cc18-64 years": "0.07",
683
+ "cc0-17 years": "XYZ"
684
+ },
685
+ {
686
+ "week_end": "1/27/2024",
687
+ "pathogen": "Combined",
688
+ "cc65+ years": "4.59",
689
+ "cc18-64 years": "2.85",
690
+ "cc0-17 years": "2.72"
691
+ },
692
+ {
693
+ "week_end": "1/27/2024",
694
+ "pathogen": "COVID-19",
695
+ "cc65+ years": "3.73",
696
+ "cc18-64 years": "1.68",
697
+ "cc0-17 years": "XYZ"
698
+ },
699
+ {
700
+ "week_end": "1/27/2024",
701
+ "pathogen": "Influenza",
702
+ "cc65+ years": "0.84",
703
+ "cc18-64 years": "1.14",
704
+ "cc0-17 years": "1.72"
705
+ },
706
+ {
707
+ "week_end": "1/27/2024",
708
+ "pathogen": "RSV",
709
+ "cc65+ years": "0.06",
710
+ "cc18-64 years": "0.07",
711
+ "cc0-17 years": "XYZ"
712
+ },
713
+ {
714
+ "week_end": "2/3/2024",
715
+ "pathogen": "Combined",
716
+ "cc65+ years": "4.09",
717
+ "cc18-64 years": "2.34",
718
+ "cc0-17 years": "2.86"
719
+ },
720
+ {
721
+ "week_end": "2/3/2024",
722
+ "pathogen": "COVID-19",
723
+ "cc65+ years": "3.24",
724
+ "cc18-64 years": "1.44",
725
+ "cc0-17 years": "XYZ"
726
+ },
727
+ {
728
+ "week_end": "2/3/2024",
729
+ "pathogen": "Influenza",
730
+ "cc65+ years": "0.81",
731
+ "cc18-64 years": "0.88",
732
+ "cc0-17 years": "2.32"
733
+ },
734
+ { "week_end": "2/3/2024", "pathogen": "RSV", "cc65+ years": "0.08", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
735
+ {
736
+ "week_end": "2/10/2024",
737
+ "pathogen": "Combined",
738
+ "cc65+ years": "3.74",
739
+ "cc18-64 years": "2.11",
740
+ "cc0-17 years": "2.4"
741
+ },
742
+ {
743
+ "week_end": "2/10/2024",
744
+ "pathogen": "COVID-19",
745
+ "cc65+ years": "3.04",
746
+ "cc18-64 years": "1.28",
747
+ "cc0-17 years": "XYZ"
748
+ },
749
+ {
750
+ "week_end": "2/10/2024",
751
+ "pathogen": "Influenza",
752
+ "cc65+ years": "0.68",
753
+ "cc18-64 years": "0.81",
754
+ "cc0-17 years": "1.69"
755
+ },
756
+ { "week_end": "2/10/2024", "pathogen": "RSV", "cc65+ years": "0.06", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
757
+ {
758
+ "week_end": "2/17/2024",
759
+ "pathogen": "Combined",
760
+ "cc65+ years": "3.37",
761
+ "cc18-64 years": "1.9",
762
+ "cc0-17 years": "3.04"
763
+ },
764
+ {
765
+ "week_end": "2/17/2024",
766
+ "pathogen": "COVID-19",
767
+ "cc65+ years": "2.66",
768
+ "cc18-64 years": "1.11",
769
+ "cc0-17 years": "XYZ"
770
+ },
771
+ {
772
+ "week_end": "2/17/2024",
773
+ "pathogen": "Influenza",
774
+ "cc65+ years": "0.69",
775
+ "cc18-64 years": "0.82",
776
+ "cc0-17 years": "2.13"
777
+ },
778
+ { "week_end": "2/17/2024", "pathogen": "RSV", "cc65+ years": "0.06", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
779
+ {
780
+ "week_end": "2/24/2024",
781
+ "pathogen": "Combined",
782
+ "cc65+ years": "3.07",
783
+ "cc18-64 years": "1.98",
784
+ "cc0-17 years": "2.17"
785
+ },
786
+ {
787
+ "week_end": "2/24/2024",
788
+ "pathogen": "COVID-19",
789
+ "cc65+ years": "2.43",
790
+ "cc18-64 years": "1.32",
791
+ "cc0-17 years": "XYZ"
792
+ },
793
+ {
794
+ "week_end": "2/24/2024",
795
+ "pathogen": "Influenza",
796
+ "cc65+ years": "0.63",
797
+ "cc18-64 years": "0.67",
798
+ "cc0-17 years": "XYZ"
799
+ },
800
+ { "week_end": "2/24/2024", "pathogen": "RSV", "cc65+ years": "0.04", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
801
+ {
802
+ "week_end": "3/2/2024",
803
+ "pathogen": "Combined",
804
+ "cc65+ years": "2.98",
805
+ "cc18-64 years": "1.88",
806
+ "cc0-17 years": "3.85"
807
+ },
808
+ {
809
+ "week_end": "3/2/2024",
810
+ "pathogen": "COVID-19",
811
+ "cc65+ years": "2.38",
812
+ "cc18-64 years": "1.19",
813
+ "cc0-17 years": "XYZ"
814
+ },
815
+ {
816
+ "week_end": "3/2/2024",
817
+ "pathogen": "Influenza",
818
+ "cc65+ years": "0.59",
819
+ "cc18-64 years": "0.71",
820
+ "cc0-17 years": "2.37"
821
+ },
822
+ { "week_end": "3/2/2024", "pathogen": "RSV", "cc65+ years": "0.03", "cc18-64 years": "XYZ", "cc0-17 years": "XYZ" },
823
+ {
824
+ "week_end": "3/9/2024",
825
+ "pathogen": "Combined",
826
+ "cc65+ years": "2.79",
827
+ "cc18-64 years": "1.57",
828
+ "cc0-17 years": "2.49"
829
+ },
830
+ {
831
+ "week_end": "3/9/2024",
832
+ "pathogen": "COVID-19",
833
+ "cc65+ years": "2.13",
834
+ "cc18-64 years": "0.9",
835
+ "cc0-17 years": "XYZ"
836
+ },
837
+ {
838
+ "week_end": "3/9/2024",
839
+ "pathogen": "Influenza",
840
+ "cc65+ years": "0.64",
841
+ "cc18-64 years": "0.67",
842
+ "cc0-17 years": "1.56"
843
+ },
844
+ { "week_end": "3/9/2024", "pathogen": "RSV", "cc65+ years": "0.04", "cc18-64 years": "0", "cc0-17 years": "0" },
845
+ {
846
+ "week_end": "3/16/2024",
847
+ "pathogen": "Combined",
848
+ "cc65+ years": "2.54",
849
+ "cc18-64 years": "1.51",
850
+ "cc0-17 years": "2.98"
851
+ },
852
+ {
853
+ "week_end": "3/16/2024",
854
+ "pathogen": "COVID-19",
855
+ "cc65+ years": "2.04",
856
+ "cc18-64 years": "0.83",
857
+ "cc0-17 years": "XYZ"
858
+ },
859
+ {
860
+ "week_end": "3/16/2024",
861
+ "pathogen": "Influenza",
862
+ "cc65+ years": "0.5",
863
+ "cc18-64 years": "0.68",
864
+ "cc0-17 years": "1.64"
865
+ },
866
+ {
867
+ "week_end": "3/16/2024",
868
+ "pathogen": "RSV",
869
+ "cc65+ years": "0.02",
870
+ "cc18-64 years": "XYZ",
871
+ "cc0-17 years": "XYZ"
872
+ },
873
+ {
874
+ "week_end": "3/23/2024",
875
+ "pathogen": "Combined",
876
+ "cc65+ years": "2.1",
877
+ "cc18-64 years": "1.31",
878
+ "cc0-17 years": "2.31"
879
+ },
880
+ {
881
+ "week_end": "3/23/2024",
882
+ "pathogen": "COVID-19",
883
+ "cc65+ years": "1.66",
884
+ "cc18-64 years": "0.85",
885
+ "cc0-17 years": "XYZ"
886
+ },
887
+ {
888
+ "week_end": "3/23/2024",
889
+ "pathogen": "Influenza",
890
+ "cc65+ years": "0.42",
891
+ "cc18-64 years": "0.46",
892
+ "cc0-17 years": "1.59"
893
+ },
894
+ { "week_end": "3/23/2024", "pathogen": "RSV", "cc65+ years": "0.02", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
895
+ {
896
+ "week_end": "3/30/2024",
897
+ "pathogen": "Combined",
898
+ "cc65+ years": "1.8",
899
+ "cc18-64 years": "1.18",
900
+ "cc0-17 years": "2.2"
901
+ },
902
+ {
903
+ "week_end": "3/30/2024",
904
+ "pathogen": "COVID-19",
905
+ "cc65+ years": "1.42",
906
+ "cc18-64 years": "0.77",
907
+ "cc0-17 years": "XYZ"
908
+ },
909
+ {
910
+ "week_end": "3/30/2024",
911
+ "pathogen": "Influenza",
912
+ "cc65+ years": "0.38",
913
+ "cc18-64 years": "0.41",
914
+ "cc0-17 years": "XYZ"
915
+ },
916
+ { "week_end": "3/30/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "XYZ" },
917
+ {
918
+ "week_end": "4/6/2024",
919
+ "pathogen": "Combined",
920
+ "cc65+ years": "1.54",
921
+ "cc18-64 years": "1.08",
922
+ "cc0-17 years": "XYZ"
923
+ },
924
+ {
925
+ "week_end": "4/6/2024",
926
+ "pathogen": "COVID-19",
927
+ "cc65+ years": "1.21",
928
+ "cc18-64 years": "0.69",
929
+ "cc0-17 years": "XYZ"
930
+ },
931
+ {
932
+ "week_end": "4/6/2024",
933
+ "pathogen": "Influenza",
934
+ "cc65+ years": "0.32",
935
+ "cc18-64 years": "0.4",
936
+ "cc0-17 years": "XYZ"
937
+ },
938
+ { "week_end": "4/6/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
939
+ {
940
+ "week_end": "4/13/2024",
941
+ "pathogen": "Combined",
942
+ "cc65+ years": "1.4",
943
+ "cc18-64 years": "0.95",
944
+ "cc0-17 years": "1.6"
945
+ },
946
+ {
947
+ "week_end": "4/13/2024",
948
+ "pathogen": "COVID-19",
949
+ "cc65+ years": "1.08",
950
+ "cc18-64 years": "0.63",
951
+ "cc0-17 years": "XYZ"
952
+ },
953
+ {
954
+ "week_end": "4/13/2024",
955
+ "pathogen": "Influenza",
956
+ "cc65+ years": "0.32",
957
+ "cc18-64 years": "0.33",
958
+ "cc0-17 years": "XYZ"
959
+ },
960
+ { "week_end": "4/13/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "XYZ" },
961
+ {
962
+ "week_end": "4/20/2024",
963
+ "pathogen": "Combined",
964
+ "cc65+ years": "1.27",
965
+ "cc18-64 years": "0.75",
966
+ "cc0-17 years": "XYZ"
967
+ },
968
+ {
969
+ "week_end": "4/20/2024",
970
+ "pathogen": "COVID-19",
971
+ "cc65+ years": "0.99",
972
+ "cc18-64 years": "0.48",
973
+ "cc0-17 years": "XYZ"
974
+ },
975
+ {
976
+ "week_end": "4/20/2024",
977
+ "pathogen": "Influenza",
978
+ "cc65+ years": "0.27",
979
+ "cc18-64 years": "0.27",
980
+ "cc0-17 years": "XYZ"
981
+ },
982
+ { "week_end": "4/20/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
983
+ {
984
+ "week_end": "4/27/2024",
985
+ "pathogen": "Combined",
986
+ "cc65+ years": "1.05",
987
+ "cc18-64 years": "0.58",
988
+ "cc0-17 years": "XYZ"
989
+ },
990
+ {
991
+ "week_end": "4/27/2024",
992
+ "pathogen": "COVID-19",
993
+ "cc65+ years": "0.86",
994
+ "cc18-64 years": "0.44",
995
+ "cc0-17 years": "XYZ"
996
+ },
997
+ {
998
+ "week_end": "4/27/2024",
999
+ "pathogen": "Influenza",
1000
+ "cc65+ years": "0.19",
1001
+ "cc18-64 years": "0.15",
1002
+ "cc0-17 years": "XYZ"
1003
+ },
1004
+ { "week_end": "4/27/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1005
+ {
1006
+ "week_end": "5/4/2024",
1007
+ "pathogen": "Combined",
1008
+ "cc65+ years": "1.01",
1009
+ "cc18-64 years": "0.53",
1010
+ "cc0-17 years": "XYZ"
1011
+ },
1012
+ {
1013
+ "week_end": "5/4/2024",
1014
+ "pathogen": "COVID-19",
1015
+ "cc65+ years": "0.85",
1016
+ "cc18-64 years": "0.44",
1017
+ "cc0-17 years": "XYZ"
1018
+ },
1019
+ {
1020
+ "week_end": "5/4/2024",
1021
+ "pathogen": "Influenza",
1022
+ "cc65+ years": "0.16",
1023
+ "cc18-64 years": "0.09",
1024
+ "cc0-17 years": "XYZ"
1025
+ },
1026
+ { "week_end": "5/4/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "XYZ" },
1027
+ {
1028
+ "week_end": "5/11/2024",
1029
+ "pathogen": "Combined",
1030
+ "cc65+ years": "0.86",
1031
+ "cc18-64 years": "0.53",
1032
+ "cc0-17 years": "XYZ"
1033
+ },
1034
+ {
1035
+ "week_end": "5/11/2024",
1036
+ "pathogen": "COVID-19",
1037
+ "cc65+ years": "0.67",
1038
+ "cc18-64 years": "0.4",
1039
+ "cc0-17 years": "0"
1040
+ },
1041
+ {
1042
+ "week_end": "5/11/2024",
1043
+ "pathogen": "Influenza",
1044
+ "cc65+ years": "0.18",
1045
+ "cc18-64 years": "0.14",
1046
+ "cc0-17 years": "XYZ"
1047
+ },
1048
+ { "week_end": "5/11/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
1049
+ {
1050
+ "week_end": "5/18/2024",
1051
+ "pathogen": "Combined",
1052
+ "cc65+ years": "0.79",
1053
+ "cc18-64 years": "0.52",
1054
+ "cc0-17 years": "XYZ"
1055
+ },
1056
+ {
1057
+ "week_end": "5/18/2024",
1058
+ "pathogen": "COVID-19",
1059
+ "cc65+ years": "0.69",
1060
+ "cc18-64 years": "0.37",
1061
+ "cc0-17 years": "XYZ"
1062
+ },
1063
+ {
1064
+ "week_end": "5/18/2024",
1065
+ "pathogen": "Influenza",
1066
+ "cc65+ years": "0.1",
1067
+ "cc18-64 years": "0.14",
1068
+ "cc0-17 years": "XYZ"
1069
+ },
1070
+ { "week_end": "5/18/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
1071
+ {
1072
+ "week_end": "5/25/2024",
1073
+ "pathogen": "Combined",
1074
+ "cc65+ years": "0.79",
1075
+ "cc18-64 years": "0.43",
1076
+ "cc0-17 years": "XYZ"
1077
+ },
1078
+ {
1079
+ "week_end": "5/25/2024",
1080
+ "pathogen": "COVID-19",
1081
+ "cc65+ years": "0.71",
1082
+ "cc18-64 years": "0.36",
1083
+ "cc0-17 years": "XYZ"
1084
+ },
1085
+ {
1086
+ "week_end": "5/25/2024",
1087
+ "pathogen": "Influenza",
1088
+ "cc65+ years": "0.08",
1089
+ "cc18-64 years": "0.08",
1090
+ "cc0-17 years": "XYZ"
1091
+ },
1092
+ { "week_end": "5/25/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1093
+ {
1094
+ "week_end": "6/1/2024",
1095
+ "pathogen": "Combined",
1096
+ "cc65+ years": "0.78",
1097
+ "cc18-64 years": "0.4",
1098
+ "cc0-17 years": "0"
1099
+ },
1100
+ {
1101
+ "week_end": "6/1/2024",
1102
+ "pathogen": "COVID-19",
1103
+ "cc65+ years": "0.69",
1104
+ "cc18-64 years": "0.32",
1105
+ "cc0-17 years": "0"
1106
+ },
1107
+ {
1108
+ "week_end": "6/1/2024",
1109
+ "pathogen": "Influenza",
1110
+ "cc65+ years": "0.08",
1111
+ "cc18-64 years": "0.08",
1112
+ "cc0-17 years": "0"
1113
+ },
1114
+ { "week_end": "6/1/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1115
+ {
1116
+ "week_end": "6/8/2024",
1117
+ "pathogen": "Combined",
1118
+ "cc65+ years": "0.75",
1119
+ "cc18-64 years": "0.33",
1120
+ "cc0-17 years": "XYZ"
1121
+ },
1122
+ {
1123
+ "week_end": "6/8/2024",
1124
+ "pathogen": "COVID-19",
1125
+ "cc65+ years": "0.66",
1126
+ "cc18-64 years": "0.26",
1127
+ "cc0-17 years": "XYZ"
1128
+ },
1129
+ {
1130
+ "week_end": "6/8/2024",
1131
+ "pathogen": "Influenza",
1132
+ "cc65+ years": "0.09",
1133
+ "cc18-64 years": "XYZ",
1134
+ "cc0-17 years": "0"
1135
+ },
1136
+ { "week_end": "6/8/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1137
+ {
1138
+ "week_end": "6/15/2024",
1139
+ "pathogen": "Combined",
1140
+ "cc65+ years": "0.83",
1141
+ "cc18-64 years": "0.43",
1142
+ "cc0-17 years": "XYZ"
1143
+ },
1144
+ {
1145
+ "week_end": "6/15/2024",
1146
+ "pathogen": "COVID-19",
1147
+ "cc65+ years": "0.76",
1148
+ "cc18-64 years": "0.32",
1149
+ "cc0-17 years": "XYZ"
1150
+ },
1151
+ {
1152
+ "week_end": "6/15/2024",
1153
+ "pathogen": "Influenza",
1154
+ "cc65+ years": "0.06",
1155
+ "cc18-64 years": "0.11",
1156
+ "cc0-17 years": "0"
1157
+ },
1158
+ { "week_end": "6/15/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "XYZ" },
1159
+ {
1160
+ "week_end": "6/22/2024",
1161
+ "pathogen": "Combined",
1162
+ "cc65+ years": "0.99",
1163
+ "cc18-64 years": "0.45",
1164
+ "cc0-17 years": "XYZ"
1165
+ },
1166
+ {
1167
+ "week_end": "6/22/2024",
1168
+ "pathogen": "COVID-19",
1169
+ "cc65+ years": "0.91",
1170
+ "cc18-64 years": "0.39",
1171
+ "cc0-17 years": "XYZ"
1172
+ },
1173
+ {
1174
+ "week_end": "6/22/2024",
1175
+ "pathogen": "Influenza",
1176
+ "cc65+ years": "0.08",
1177
+ "cc18-64 years": "XYZ",
1178
+ "cc0-17 years": "0"
1179
+ },
1180
+ { "week_end": "6/22/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1181
+ {
1182
+ "week_end": "6/29/2024",
1183
+ "pathogen": "Combined",
1184
+ "cc65+ years": "0.98",
1185
+ "cc18-64 years": "0.42",
1186
+ "cc0-17 years": "XYZ"
1187
+ },
1188
+ {
1189
+ "week_end": "6/29/2024",
1190
+ "pathogen": "COVID-19",
1191
+ "cc65+ years": "0.92",
1192
+ "cc18-64 years": "0.38",
1193
+ "cc0-17 years": "XYZ"
1194
+ },
1195
+ {
1196
+ "week_end": "6/29/2024",
1197
+ "pathogen": "Influenza",
1198
+ "cc65+ years": "0.06",
1199
+ "cc18-64 years": "XYZ",
1200
+ "cc0-17 years": "0"
1201
+ },
1202
+ { "week_end": "6/29/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
1203
+ {
1204
+ "week_end": "7/6/2024",
1205
+ "pathogen": "Combined",
1206
+ "cc65+ years": "1.16",
1207
+ "cc18-64 years": "0.44",
1208
+ "cc0-17 years": "XYZ"
1209
+ },
1210
+ {
1211
+ "week_end": "7/6/2024",
1212
+ "pathogen": "COVID-19",
1213
+ "cc65+ years": "1.11",
1214
+ "cc18-64 years": "0.4",
1215
+ "cc0-17 years": "XYZ"
1216
+ },
1217
+ {
1218
+ "week_end": "7/6/2024",
1219
+ "pathogen": "Influenza",
1220
+ "cc65+ years": "0.06",
1221
+ "cc18-64 years": "XYZ",
1222
+ "cc0-17 years": "0"
1223
+ },
1224
+ { "week_end": "7/6/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1225
+ {
1226
+ "week_end": "7/13/2024",
1227
+ "pathogen": "Combined",
1228
+ "cc65+ years": "1.3",
1229
+ "cc18-64 years": "0.47",
1230
+ "cc0-17 years": "XYZ"
1231
+ },
1232
+ {
1233
+ "week_end": "7/13/2024",
1234
+ "pathogen": "COVID-19",
1235
+ "cc65+ years": "1.23",
1236
+ "cc18-64 years": "0.4",
1237
+ "cc0-17 years": "XYZ"
1238
+ },
1239
+ {
1240
+ "week_end": "7/13/2024",
1241
+ "pathogen": "Influenza",
1242
+ "cc65+ years": "0.07",
1243
+ "cc18-64 years": "XYZ",
1244
+ "cc0-17 years": "0"
1245
+ },
1246
+ { "week_end": "7/13/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "XYZ", "cc0-17 years": "0" },
1247
+ {
1248
+ "week_end": "7/20/2024",
1249
+ "pathogen": "Combined",
1250
+ "cc65+ years": "1.57",
1251
+ "cc18-64 years": "0.61",
1252
+ "cc0-17 years": "0"
1253
+ },
1254
+ {
1255
+ "week_end": "7/20/2024",
1256
+ "pathogen": "COVID-19",
1257
+ "cc65+ years": "1.51",
1258
+ "cc18-64 years": "0.54",
1259
+ "cc0-17 years": "0"
1260
+ },
1261
+ {
1262
+ "week_end": "7/20/2024",
1263
+ "pathogen": "Influenza",
1264
+ "cc65+ years": "0.07",
1265
+ "cc18-64 years": "XYZ",
1266
+ "cc0-17 years": "0"
1267
+ },
1268
+ { "week_end": "7/20/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1269
+ {
1270
+ "week_end": "7/27/2024",
1271
+ "pathogen": "Combined",
1272
+ "cc65+ years": "1.81",
1273
+ "cc18-64 years": "0.77",
1274
+ "cc0-17 years": "XYZ"
1275
+ },
1276
+ {
1277
+ "week_end": "7/27/2024",
1278
+ "pathogen": "COVID-19",
1279
+ "cc65+ years": "1.78",
1280
+ "cc18-64 years": "0.75",
1281
+ "cc0-17 years": "XYZ"
1282
+ },
1283
+ {
1284
+ "week_end": "7/27/2024",
1285
+ "pathogen": "Influenza",
1286
+ "cc65+ years": "0.04",
1287
+ "cc18-64 years": "XYZ",
1288
+ "cc0-17 years": "0"
1289
+ },
1290
+ { "week_end": "7/27/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1291
+ {
1292
+ "week_end": "8/3/2024",
1293
+ "pathogen": "Combined",
1294
+ "cc65+ years": "2.1",
1295
+ "cc18-64 years": "0.76",
1296
+ "cc0-17 years": "XYZ"
1297
+ },
1298
+ {
1299
+ "week_end": "8/3/2024",
1300
+ "pathogen": "COVID-19",
1301
+ "cc65+ years": "2.05",
1302
+ "cc18-64 years": "0.71",
1303
+ "cc0-17 years": "XYZ"
1304
+ },
1305
+ {
1306
+ "week_end": "8/3/2024",
1307
+ "pathogen": "Influenza",
1308
+ "cc65+ years": "0.05",
1309
+ "cc18-64 years": "XYZ",
1310
+ "cc0-17 years": "XYZ"
1311
+ },
1312
+ { "week_end": "8/3/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1313
+ {
1314
+ "week_end": "8/10/2024",
1315
+ "pathogen": "Combined",
1316
+ "cc65+ years": "2.29",
1317
+ "cc18-64 years": "0.75",
1318
+ "cc0-17 years": "XYZ"
1319
+ },
1320
+ {
1321
+ "week_end": "8/10/2024",
1322
+ "pathogen": "COVID-19",
1323
+ "cc65+ years": "2.23",
1324
+ "cc18-64 years": "0.74",
1325
+ "cc0-17 years": "XYZ"
1326
+ },
1327
+ {
1328
+ "week_end": "8/10/2024",
1329
+ "pathogen": "Influenza",
1330
+ "cc65+ years": "0.05",
1331
+ "cc18-64 years": "XYZ",
1332
+ "cc0-17 years": "0"
1333
+ },
1334
+ { "week_end": "8/10/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1335
+ {
1336
+ "week_end": "8/17/2024",
1337
+ "pathogen": "Combined",
1338
+ "cc65+ years": "2.27",
1339
+ "cc18-64 years": "0.88",
1340
+ "cc0-17 years": "XYZ"
1341
+ },
1342
+ {
1343
+ "week_end": "8/17/2024",
1344
+ "pathogen": "COVID-19",
1345
+ "cc65+ years": "2.22",
1346
+ "cc18-64 years": "0.87",
1347
+ "cc0-17 years": "XYZ"
1348
+ },
1349
+ {
1350
+ "week_end": "8/17/2024",
1351
+ "pathogen": "Influenza",
1352
+ "cc65+ years": "0.05",
1353
+ "cc18-64 years": "XYZ",
1354
+ "cc0-17 years": "XYZ"
1355
+ },
1356
+ { "week_end": "8/17/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1357
+ {
1358
+ "week_end": "8/24/2024",
1359
+ "pathogen": "Combined",
1360
+ "cc65+ years": "2.62",
1361
+ "cc18-64 years": "1",
1362
+ "cc0-17 years": "1.72"
1363
+ },
1364
+ {
1365
+ "week_end": "8/24/2024",
1366
+ "pathogen": "COVID-19",
1367
+ "cc65+ years": "2.57",
1368
+ "cc18-64 years": "0.96",
1369
+ "cc0-17 years": "XYZ"
1370
+ },
1371
+ {
1372
+ "week_end": "8/24/2024",
1373
+ "pathogen": "Influenza",
1374
+ "cc65+ years": "0.06",
1375
+ "cc18-64 years": "XYZ",
1376
+ "cc0-17 years": "XYZ"
1377
+ },
1378
+ { "week_end": "8/24/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1379
+ {
1380
+ "week_end": "8/31/2024",
1381
+ "pathogen": "Combined",
1382
+ "cc65+ years": "2.83",
1383
+ "cc18-64 years": "1.24",
1384
+ "cc0-17 years": "XYZ"
1385
+ },
1386
+ {
1387
+ "week_end": "8/31/2024",
1388
+ "pathogen": "COVID-19",
1389
+ "cc65+ years": "2.77",
1390
+ "cc18-64 years": "1.19",
1391
+ "cc0-17 years": "XYZ"
1392
+ },
1393
+ {
1394
+ "week_end": "8/31/2024",
1395
+ "pathogen": "Influenza",
1396
+ "cc65+ years": "0.06",
1397
+ "cc18-64 years": "XYZ",
1398
+ "cc0-17 years": "XYZ"
1399
+ },
1400
+ { "week_end": "8/31/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1401
+ {
1402
+ "week_end": "9/7/2024",
1403
+ "pathogen": "Combined",
1404
+ "cc65+ years": "2.61",
1405
+ "cc18-64 years": "0.9",
1406
+ "cc0-17 years": "XYZ"
1407
+ },
1408
+ {
1409
+ "week_end": "9/7/2024",
1410
+ "pathogen": "COVID-19",
1411
+ "cc65+ years": "2.56",
1412
+ "cc18-64 years": "0.88",
1413
+ "cc0-17 years": "XYZ"
1414
+ },
1415
+ {
1416
+ "week_end": "9/7/2024",
1417
+ "pathogen": "Influenza",
1418
+ "cc65+ years": "0.05",
1419
+ "cc18-64 years": "XYZ",
1420
+ "cc0-17 years": "0"
1421
+ },
1422
+ { "week_end": "9/7/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1423
+ {
1424
+ "week_end": "9/14/2024",
1425
+ "pathogen": "Combined",
1426
+ "cc65+ years": "2.55",
1427
+ "cc18-64 years": "1.17",
1428
+ "cc0-17 years": "XYZ"
1429
+ },
1430
+ {
1431
+ "week_end": "9/14/2024",
1432
+ "pathogen": "COVID-19",
1433
+ "cc65+ years": "2.51",
1434
+ "cc18-64 years": "1.13",
1435
+ "cc0-17 years": "XYZ"
1436
+ },
1437
+ {
1438
+ "week_end": "9/14/2024",
1439
+ "pathogen": "Influenza",
1440
+ "cc65+ years": "0.04",
1441
+ "cc18-64 years": "XYZ",
1442
+ "cc0-17 years": "0"
1443
+ },
1444
+ { "week_end": "9/14/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1445
+ {
1446
+ "week_end": "9/21/2024",
1447
+ "pathogen": "Combined",
1448
+ "cc65+ years": "2.38",
1449
+ "cc18-64 years": "0.8",
1450
+ "cc0-17 years": "XYZ"
1451
+ },
1452
+ {
1453
+ "week_end": "9/21/2024",
1454
+ "pathogen": "COVID-19",
1455
+ "cc65+ years": "2.3",
1456
+ "cc18-64 years": "0.78",
1457
+ "cc0-17 years": "XYZ"
1458
+ },
1459
+ {
1460
+ "week_end": "9/21/2024",
1461
+ "pathogen": "Influenza",
1462
+ "cc65+ years": "0.09",
1463
+ "cc18-64 years": "XYZ",
1464
+ "cc0-17 years": "0"
1465
+ },
1466
+ { "week_end": "9/21/2024", "pathogen": "RSV", "cc65+ years": "XYZ", "cc18-64 years": "0", "cc0-17 years": "0" },
1467
+ {
1468
+ "week_end": "9/28/2024",
1469
+ "pathogen": "Combined",
1470
+ "cc65+ years": "2.24",
1471
+ "cc18-64 years": "0.76",
1472
+ "cc0-17 years": "XYZ"
1473
+ },
1474
+ {
1475
+ "week_end": "9/28/2024",
1476
+ "pathogen": "COVID-19",
1477
+ "cc65+ years": "2.17",
1478
+ "cc18-64 years": "0.73",
1479
+ "cc0-17 years": "0"
1480
+ },
1481
+ {
1482
+ "week_end": "9/28/2024",
1483
+ "pathogen": "Influenza",
1484
+ "cc65+ years": "0.07",
1485
+ "cc18-64 years": "XYZ",
1486
+ "cc0-17 years": "XYZ"
1487
+ },
1488
+ { "week_end": "9/28/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1489
+ {
1490
+ "week_end": "10/5/2024",
1491
+ "pathogen": "Combined",
1492
+ "cc65+ years": "2.02",
1493
+ "cc18-64 years": "1.06",
1494
+ "cc0-17 years": "0"
1495
+ },
1496
+ {
1497
+ "week_end": "10/5/2024",
1498
+ "pathogen": "COVID-19",
1499
+ "cc65+ years": "1.97",
1500
+ "cc18-64 years": "1.03",
1501
+ "cc0-17 years": "0"
1502
+ },
1503
+ {
1504
+ "week_end": "10/5/2024",
1505
+ "pathogen": "Influenza",
1506
+ "cc65+ years": "0.05",
1507
+ "cc18-64 years": "XYZ",
1508
+ "cc0-17 years": "0"
1509
+ },
1510
+ { "week_end": "10/5/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "0" },
1511
+ {
1512
+ "week_end": "10/12/2024",
1513
+ "pathogen": "Combined",
1514
+ "cc65+ years": "1.76",
1515
+ "cc18-64 years": "0.73",
1516
+ "cc0-17 years": "XYZ"
1517
+ },
1518
+ {
1519
+ "week_end": "10/12/2024",
1520
+ "pathogen": "COVID-19",
1521
+ "cc65+ years": "1.72",
1522
+ "cc18-64 years": "0.64",
1523
+ "cc0-17 years": "XYZ"
1524
+ },
1525
+ {
1526
+ "week_end": "10/12/2024",
1527
+ "pathogen": "Influenza",
1528
+ "cc65+ years": "0.04",
1529
+ "cc18-64 years": "XYZ",
1530
+ "cc0-17 years": "XYZ"
1531
+ },
1532
+ { "week_end": "10/12/2024", "pathogen": "RSV", "cc65+ years": "0", "cc18-64 years": "0", "cc0-17 years": "XYZ" }
1533
+ ],
1534
+ "dataFileName": "death_demo_test.csv",
1535
+ "dataFileSourceType": "file",
1536
+ "dataDescription": { "horizontal": false, "series": false },
1537
+ "version": "4.24.10",
1538
+ "dynamicMarginTop": 0,
1539
+ "filters": [
1540
+ {
1541
+ "values": ["Combined", "COVID-19", "Influenza", "RSV"],
1542
+ "filterStyle": "dropdown",
1543
+ "id": 1730303199537,
1544
+ "active": "Combined",
1545
+ "columnName": "pathogen",
1546
+ "label": "Pathogen"
1547
+ }
1548
+ ]
1549
+ }