@cdc/chart 4.25.8 → 4.25.11

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 (145) hide show
  1. package/.claude/settings.local.json +9 -0
  2. package/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
  3. package/dist/cdcchart.js +44236 -40355
  4. package/examples/feature/__data__/planet-example-data.json +0 -30
  5. package/examples/feature/boxplot/valid-boxplot.csv +38 -17
  6. package/examples/grouped-bar-test.json +400 -0
  7. package/examples/private/DEV-11825.json +573 -0
  8. package/examples/private/d.json +382 -0
  9. package/examples/private/example-2.json +49784 -0
  10. package/examples/private/f2.json +1 -0
  11. package/examples/private/f4.json +1577 -0
  12. package/examples/private/forecast.json +1180 -0
  13. package/examples/private/lollipop.json +468 -0
  14. package/examples/private/na.json +913 -0
  15. package/examples/private/new.json +48756 -0
  16. package/examples/private/pie-chart-legend.json +904 -0
  17. package/examples/private/test-data.csv +28 -0
  18. package/examples/suppressed_tooltip.json +480 -0
  19. package/index.html +2 -133
  20. package/package.json +25 -7
  21. package/src/CdcChart.tsx +9 -13
  22. package/src/CdcChartComponent.tsx +403 -92
  23. package/src/_stories/Chart.Anchors.stories.tsx +2 -2
  24. package/src/_stories/Chart.BoxPlot.stories.tsx +1 -1
  25. package/src/_stories/Chart.CI.stories.tsx +1 -1
  26. package/src/_stories/Chart.Combo.stories.tsx +18 -0
  27. package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
  28. package/src/_stories/Chart.DynamicSeries.stories.tsx +2 -2
  29. package/src/_stories/Chart.Filters.stories.tsx +2 -2
  30. package/src/_stories/Chart.Forecast.stories.tsx +36 -0
  31. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
  32. package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
  33. package/src/_stories/Chart.Patterns.stories.tsx +20 -0
  34. package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
  35. package/src/_stories/Chart.ScatterPlot.stories.tsx +1 -1
  36. package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
  37. package/src/_stories/Chart.stories.tsx +8 -5
  38. package/src/_stories/Chart.tooltip.stories.tsx +1 -1
  39. package/src/_stories/ChartAnnotation.stories.tsx +7 -4
  40. package/src/_stories/ChartAxisLabels.stories.tsx +2 -2
  41. package/src/_stories/ChartAxisTitles.stories.tsx +2 -2
  42. package/src/_stories/ChartBar.Editor.stories.tsx +3580 -0
  43. package/src/_stories/ChartEditor.Editor.stories.tsx +658 -0
  44. package/src/_stories/ChartEditor.stories.tsx +59 -60
  45. package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
  46. package/src/_stories/ChartLine.Symbols.stories.tsx +1 -1
  47. package/src/_stories/ChartPrefixSuffix.stories.tsx +2 -2
  48. package/src/_stories/_mock/combo.json +451 -0
  49. package/src/_stories/_mock/editor-test-configs.json +376 -0
  50. package/src/_stories/_mock/editor-test-datasets.json +477 -0
  51. package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
  52. package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
  53. package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
  54. package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
  55. package/src/_stories/_mock/pie_config.json +257 -62
  56. package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
  57. package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
  58. package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
  59. package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
  60. package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
  61. package/src/_stories/_mock/stacked-pattern-test.json +520 -0
  62. package/src/components/Annotations/components/AnnotationDraggable.tsx +1 -0
  63. package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
  64. package/src/components/Annotations/components/findNearestDatum.ts +6 -41
  65. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -6
  66. package/src/components/AreaChart/index.tsx +1 -2
  67. package/src/components/BarChart/components/BarChart.Horizontal.tsx +161 -22
  68. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +138 -5
  69. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +215 -73
  70. package/src/components/BarChart/components/BarChart.Vertical.tsx +155 -22
  71. package/src/components/BarChart/helpers/index.ts +43 -4
  72. package/src/components/BarChart/helpers/lollipopColors.ts +27 -0
  73. package/src/components/BarChart/helpers/useBarChart.ts +25 -3
  74. package/src/components/BoxPlot/BoxPlot.Vertical.tsx +2 -1
  75. package/src/components/BoxPlot/helpers/index.ts +3 -3
  76. package/src/components/Brush/BrushChart.tsx +1 -1
  77. package/src/components/DeviationBar.jsx +9 -6
  78. package/src/components/EditorPanel/EditorPanel.tsx +563 -229
  79. package/src/components/EditorPanel/EditorPanelContext.ts +3 -0
  80. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
  81. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +19 -1
  82. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +461 -0
  83. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +80 -67
  84. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +422 -0
  85. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +188 -139
  86. package/src/components/EditorPanel/components/Panels/index.tsx +5 -1
  87. package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +0 -8
  88. package/src/components/EditorPanel/editor-panel.scss +0 -20
  89. package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +49 -48
  90. package/src/components/EditorPanel/useEditorPermissions.ts +7 -15
  91. package/src/components/Forecasting/Forecasting.tsx +175 -27
  92. package/src/components/ForestPlot/ForestPlot.tsx +11 -7
  93. package/src/components/ForestPlot/ForestPlotProps.ts +1 -1
  94. package/src/components/Legend/Legend.Component.tsx +114 -14
  95. package/src/components/Legend/helpers/createFormatLabels.tsx +230 -171
  96. package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
  97. package/src/components/LegendWrapper.tsx +1 -1
  98. package/src/components/LineChart/LineChartProps.ts +0 -3
  99. package/src/components/LineChart/components/LineChart.Circle.tsx +2 -2
  100. package/src/components/LineChart/helpers.ts +1 -1
  101. package/src/components/LineChart/index.tsx +38 -15
  102. package/src/components/LinearChart.tsx +96 -84
  103. package/src/components/PairedBarChart.jsx +6 -4
  104. package/src/components/PieChart/PieChart.tsx +170 -54
  105. package/src/components/Regions/components/Regions.tsx +3 -24
  106. package/src/components/Sankey/components/Sankey.tsx +7 -1
  107. package/src/components/Sankey/types/index.ts +1 -1
  108. package/src/components/ScatterPlot/ScatterPlot.jsx +32 -4
  109. package/src/components/SmallMultiples/SmallMultipleTile.tsx +198 -0
  110. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  111. package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
  112. package/src/components/SmallMultiples/index.ts +2 -0
  113. package/src/data/initial-state.js +327 -293
  114. package/src/helpers/buildForecastPaletteMappings.ts +112 -0
  115. package/src/helpers/buildForecastPaletteOptions.ts +71 -0
  116. package/src/helpers/getColorScale.ts +82 -8
  117. package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +14 -7
  118. package/src/helpers/getNewRuntime.ts +1 -1
  119. package/src/helpers/getTransformedData.ts +1 -1
  120. package/src/helpers/getYAxisAutoPadding.ts +53 -0
  121. package/src/helpers/smallMultiplesHelpers.ts +529 -0
  122. package/src/hooks/useChartHoverAnalytics.tsx +44 -0
  123. package/src/hooks/useProgrammaticTooltip.ts +96 -0
  124. package/src/hooks/useReduceData.ts +105 -70
  125. package/src/hooks/useScales.ts +88 -34
  126. package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
  127. package/src/hooks/useTooltip.tsx +116 -29
  128. package/src/index.jsx +0 -2
  129. package/src/scss/main.scss +13 -80
  130. package/src/store/chart.actions.ts +2 -0
  131. package/src/store/chart.reducer.ts +5 -1
  132. package/src/test/CdcChart.test.jsx +8 -3
  133. package/src/types/ChartConfig.ts +53 -11
  134. package/src/types/ChartContext.ts +4 -0
  135. package/vite.config.js +1 -1
  136. package/vitest.config.ts +16 -0
  137. package/src/_stories/_mock/pie_data.json +0 -218
  138. package/src/components/AreaChart/components/AreaChart.jsx +0 -109
  139. package/src/coreStyles_chart.scss +0 -3
  140. package/src/helpers/configHelpers.ts +0 -28
  141. package/src/helpers/generateColorsArray.ts +0 -8
  142. package/src/helpers/sort.ts +0 -7
  143. package/src/hooks/useActiveElement.js +0 -19
  144. package/src/hooks/useChartClasses.js +0 -41
  145. package/src/hooks/useColorPalette.js +0 -76
@@ -0,0 +1,1305 @@
1
+ {
2
+ "annotations": [],
3
+ "allowLineToBarGraph": "__​undefined__",
4
+ "type": "chart",
5
+ "debugSvg": false,
6
+ "chartMessage": {
7
+ "noData": "No Data Available"
8
+ },
9
+ "title": "",
10
+ "showTitle": true,
11
+ "showDownloadMediaButton": false,
12
+ "theme": "theme-blue",
13
+ "animate": false,
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "false",
17
+ "isLollipopChart": false,
18
+ "lollipopShape": "circle",
19
+ "lollipopColorStyle": "two-tone",
20
+ "visualizationSubType": "regular",
21
+ "barStyle": "flat",
22
+ "roundingStyle": "standard",
23
+ "tipRounding": "top",
24
+ "isResponsiveTicks": false,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showMissingDataLabel": true,
28
+ "showSuppressedSymbol": true,
29
+ "showZeroValueData": true,
30
+ "hideNullValue": true,
31
+ "palette": {
32
+ "name": "qualitative_bold",
33
+ "version": "1.0",
34
+ "backups": [
35
+ {
36
+ "name": "pinkpurple",
37
+ "version": "1.0",
38
+ "isReversed": "__​undefined__"
39
+ },
40
+ {
41
+ "name": "qualitative_bold",
42
+ "version": "1.0",
43
+ "isReversed": "__​undefined__"
44
+ }
45
+ ],
46
+ "customColors": [
47
+ "#f06f19",
48
+ "#0a58d6",
49
+ "#890664",
50
+ "#000000",
51
+ "#89bf13",
52
+ "#94036f",
53
+ "#87b6f9",
54
+ "#867a77",
55
+ "#000000"
56
+ ]
57
+ },
58
+ "showZeroValueDataLabel": true
59
+ },
60
+ "padding": {
61
+ "left": 5,
62
+ "right": 5
63
+ },
64
+ "preliminaryData": [],
65
+ "yAxis": {
66
+ "hideAxis": true,
67
+ "displayNumbersOnBar": false,
68
+ "hideLabel": false,
69
+ "hideTicks": true,
70
+ "size": "30",
71
+ "gridLines": true,
72
+ "enablePadding": true,
73
+ "min": "",
74
+ "max": "",
75
+ "labelColor": "#1c1d1f",
76
+ "tickLabelColor": "#1c1d1f",
77
+ "tickColor": "#1c1d1f",
78
+ "rightHideAxis": true,
79
+ "rightAxisSize": 0,
80
+ "rightLabel": "",
81
+ "rightLabelOffsetSize": 0,
82
+ "rightAxisLabelColor": "#1c1d1f",
83
+ "rightAxisTickLabelColor": "#1c1d1f",
84
+ "rightAxisTickColor": "#1c1d1f",
85
+ "numTicks": "8",
86
+ "axisPadding": 0,
87
+ "scalePadding": 10,
88
+ "tickRotation": "",
89
+ "anchors": [],
90
+ "shoMissingDataLabel": true,
91
+ "showMissingDataLine": true,
92
+ "categories": [],
93
+ "label": "",
94
+ "inlineLabel": " percent"
95
+ },
96
+ "boxplot": {
97
+ "plots": [],
98
+ "borders": "true",
99
+ "plotOutlierValues": false,
100
+ "plotNonOutlierValues": true,
101
+ "labels": {
102
+ "q1": "Lower Quartile",
103
+ "q2": "q2",
104
+ "q3": "Upper Quartile",
105
+ "q4": "q4",
106
+ "minimum": "Minimum",
107
+ "maximum": "Maximum",
108
+ "mean": "Mean",
109
+ "median": "Median",
110
+ "sd": "Standard Deviation",
111
+ "iqr": "Interquartile Range",
112
+ "total": "Total",
113
+ "outliers": "Outliers",
114
+ "values": "Values",
115
+ "lowerBounds": "Lower Bounds",
116
+ "upperBounds": "Upper Bounds",
117
+ "count": "Count"
118
+ },
119
+ "firstQuartilePercentage": 25,
120
+ "thirdQuartilePercentage": 75,
121
+ "boxWidthPercentage": 40,
122
+ "legend": {
123
+ "showHowToReadText": false,
124
+ "howToReadText": ""
125
+ }
126
+ },
127
+ "topAxis": {
128
+ "hasLine": false
129
+ },
130
+ "isLegendValue": false,
131
+ "barThickness": 0.35,
132
+ "barHeight": 25,
133
+ "barSpace": 15,
134
+ "heights": {
135
+ "vertical": "250",
136
+ "horizontal": 750,
137
+ "mobileVertical": "150"
138
+ },
139
+ "xAxis": {
140
+ "sortDates": false,
141
+ "anchors": [],
142
+ "type": "date-time",
143
+ "showTargetLabel": true,
144
+ "targetLabel": "Target",
145
+ "hideAxis": false,
146
+ "hideLabel": false,
147
+ "hideTicks": false,
148
+ "size": "0",
149
+ "tickRotation": "0",
150
+ "min": "",
151
+ "max": "",
152
+ "labelColor": "#1c1d1f",
153
+ "tickLabelColor": "#1c1d1f",
154
+ "tickColor": "#1c1d1f",
155
+ "numTicks": "6",
156
+ "labelOffset": 0,
157
+ "axisPadding": 0,
158
+ "target": 0,
159
+ "maxTickRotation": 0,
160
+ "padding": "0",
161
+ "showYearsOnce": true,
162
+ "sortByRecentDate": false,
163
+ "brushActive": false,
164
+ "dataKey": "week_end",
165
+ "label": "",
166
+ "dateParseFormat": "%Y-%m-%d",
167
+ "dateDisplayFormat": "%b. %Y",
168
+ "tickWidthMax": 75,
169
+ "axisBBox": 45.86000061035156,
170
+ "viewportNumTicks": {
171
+ "xxs": ""
172
+ }
173
+ },
174
+ "table": {
175
+ "label": "Data Table",
176
+ "expanded": false,
177
+ "limitHeight": false,
178
+ "height": "",
179
+ "caption": "",
180
+ "showDownloadUrl": false,
181
+ "showDataTableLink": true,
182
+ "showDownloadLinkBelow": true,
183
+ "indexLabel": "Week Ending",
184
+ "download": true,
185
+ "showVertical": true,
186
+ "dateDisplayFormat": "%B %-d, %Y",
187
+ "showMissingDataLabel": true,
188
+ "showSuppressedSymbol": true,
189
+ "collapsible": true,
190
+ "show": true,
191
+ "showDownloadImgButton": false
192
+ },
193
+ "orientation": "vertical",
194
+ "columns": {},
195
+ "legend": {
196
+ "hide": true,
197
+ "behavior": "isolate",
198
+ "axisAlign": true,
199
+ "singleRow": true,
200
+ "colorCode": "",
201
+ "reverseLabelOrder": false,
202
+ "description": "",
203
+ "dynamicLegend": false,
204
+ "dynamicLegendDefaultText": "Show All",
205
+ "dynamicLegendItemLimit": 5,
206
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
207
+ "dynamicLegendChartMessage": "Select Options from the Legend",
208
+ "label": "",
209
+ "lineMode": false,
210
+ "verticalSorted": false,
211
+ "highlightOnHover": false,
212
+ "hideSuppressedLabels": false,
213
+ "hideSuppressionLink": false,
214
+ "seriesHighlight": [],
215
+ "style": "circles",
216
+ "subStyle": "linear blocks",
217
+ "groupBy": "",
218
+ "shape": "circle",
219
+ "tickRotation": "",
220
+ "order": "dataColumn",
221
+ "hideBorder": {
222
+ "side": false,
223
+ "topBottom": true
224
+ },
225
+ "position": "top",
226
+ "orderedValues": [],
227
+ "patterns": {},
228
+ "patternField": "",
229
+ "showLegendValuesTooltip": false,
230
+ "unified": true
231
+ },
232
+ "smallMultiples": {
233
+ "mode": "by-series",
234
+ "tileColumn": "",
235
+ "tilesPerRowDesktop": 3,
236
+ "tilesPerRowMobile": 2,
237
+ "independentYAxis": false,
238
+ "tileOrder": [],
239
+ "tileOrderType": "asc",
240
+ "tileTitles": {},
241
+ "colorMode": "different",
242
+ "synchronizedTooltips": true,
243
+ "showAreaUnderLine": true
244
+ },
245
+ "exclusions": {
246
+ "active": false,
247
+ "keys": []
248
+ },
249
+ "twoColor": {
250
+ "palette": "monochrome-1",
251
+ "isPaletteReversed": false
252
+ },
253
+ "labels": false,
254
+ "dataFormat": {
255
+ "commas": false,
256
+ "prefix": "",
257
+ "suffix": "",
258
+ "abbreviated": true,
259
+ "bottomSuffix": "",
260
+ "bottomPrefix": "",
261
+ "bottomAbbreviated": false,
262
+ "roundTo": "1"
263
+ },
264
+ "filters": [],
265
+ "confidenceKeys": {},
266
+ "visual": {
267
+ "border": true,
268
+ "accent": true,
269
+ "background": true,
270
+ "verticalHoverLine": true,
271
+ "horizontalHoverLine": false,
272
+ "lineDatapointSymbol": "none",
273
+ "maximumShapeAmount": 7
274
+ },
275
+ "useLogScale": false,
276
+ "filterBehavior": "Filter Change",
277
+ "highlightedBarValues": [],
278
+ "series": [
279
+ {
280
+ "dataKey": "COVID-19",
281
+ "type": "Line",
282
+ "axis": "Left",
283
+ "tooltip": true,
284
+ "name": "COVID-19 with a very very long title"
285
+ },
286
+ {
287
+ "dataKey": "Influenza",
288
+ "type": "Line",
289
+ "axis": "Left",
290
+ "tooltip": true
291
+ },
292
+ {
293
+ "dataKey": "RSV",
294
+ "type": "Line",
295
+ "axis": "Left",
296
+ "tooltip": true
297
+ }
298
+ ],
299
+ "tooltips": {
300
+ "opacity": 90,
301
+ "singleSeries": false,
302
+ "dateDisplayFormat": "%B %-d, %Y"
303
+ },
304
+ "forestPlot": {
305
+ "startAt": 0,
306
+ "colors": {
307
+ "line": "",
308
+ "shape": ""
309
+ },
310
+ "lineOfNoEffect": {
311
+ "show": true
312
+ },
313
+ "type": "",
314
+ "pooledResult": {
315
+ "diamondHeight": 5,
316
+ "column": ""
317
+ },
318
+ "estimateField": "",
319
+ "estimateRadius": "",
320
+ "shape": "",
321
+ "rowHeight": 20,
322
+ "description": {
323
+ "show": true,
324
+ "text": "description",
325
+ "location": 0
326
+ },
327
+ "result": {
328
+ "show": true,
329
+ "text": "result",
330
+ "location": 100
331
+ },
332
+ "radius": {
333
+ "min": 1,
334
+ "max": 8,
335
+ "scalingColumn": ""
336
+ },
337
+ "regression": {
338
+ "lower": 0,
339
+ "upper": 0,
340
+ "estimateField": 0
341
+ },
342
+ "leftWidthOffset": 0,
343
+ "rightWidthOffset": 0,
344
+ "showZeroLine": false,
345
+ "leftLabel": "",
346
+ "rightLabel": "",
347
+ "hideDateCategoryCol": false,
348
+ "width": "auto",
349
+ "lowerCiField": "",
350
+ "upperCiField": ""
351
+ },
352
+ "area": {
353
+ "isStacked": false
354
+ },
355
+ "sankey": {
356
+ "title": {
357
+ "defaultColor": "black"
358
+ },
359
+ "iterations": 1,
360
+ "rxValue": 0.9,
361
+ "overallSize": {
362
+ "width": 900,
363
+ "height": 700
364
+ },
365
+ "margin": {
366
+ "margin_y": 25,
367
+ "margin_x": 0
368
+ },
369
+ "nodeSize": {
370
+ "nodeWidth": 26,
371
+ "nodeHeight": 40
372
+ },
373
+ "nodePadding": 55,
374
+ "nodeFontColor": "black",
375
+ "nodeColor": {
376
+ "default": "#ff8500",
377
+ "inactive": "#808080"
378
+ },
379
+ "linkColor": {
380
+ "default": "#ffc900",
381
+ "inactive": "#D3D3D3"
382
+ },
383
+ "opacity": {
384
+ "nodeOpacityDefault": 1,
385
+ "nodeOpacityInactive": 0.1,
386
+ "LinkOpacityDefault": 1,
387
+ "LinkOpacityInactive": 0.1
388
+ },
389
+ "storyNodeFontColor": "#006778",
390
+ "storyNodeText": [],
391
+ "nodeValueStyle": {
392
+ "textBefore": "(",
393
+ "textAfter": ")"
394
+ },
395
+ "data": []
396
+ },
397
+ "fontSize": "medium",
398
+ "isPaletteReversed": false,
399
+ "suppressedData": [],
400
+ "showChartBrush": false,
401
+ "visualizationType": "Line",
402
+ "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NREVSSWeeklyPercentPositive.json",
403
+ "dataFileSourceType": "url",
404
+ "dataDescription": {
405
+ "horizontal": false,
406
+ "series": true,
407
+ "singleRow": false,
408
+ "xKey": "week_end",
409
+ "valueKeys": ["percent_test_positivity"],
410
+ "seriesKey": "pathogen"
411
+ },
412
+ "validated": "4.24.3",
413
+ "dynamicMarginTop": 0,
414
+ "description": "<div class=\"text-left\">Data last updated on <span data-timestamp=\"NREVSSWeeklyPercentPositive:Data_as_of\"></span> and presented through <span data-timestamp=\"NREVSSWeeklyPercentPositive:Data_Presented_Through\"></span>. <a href=\"https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-Percent-of-Tests-P/seuz-s2cv/about_data\">View this dataset</a> on data.cdc.gov.</div>",
415
+ "regions": [],
416
+ "version": "4.25.9",
417
+ "migrations": {
418
+ "addColorMigration": true
419
+ },
420
+ "data": [
421
+ {
422
+ "week_end": "2024-10-05",
423
+ "**Numeric Value Property**": "percent_test_positivity",
424
+ "grouping": "A",
425
+ "COVID-19": "7.4",
426
+ "RSV": "1.1",
427
+ "Influenza": "0.7",
428
+ "undefined": "__​undefined__"
429
+ },
430
+ {
431
+ "week_end": "2024-10-12",
432
+ "**Numeric Value Property**": "percent_test_positivity",
433
+ "grouping": "A",
434
+ "COVID-19": "6.3",
435
+ "RSV": "1.2",
436
+ "Influenza": "0.7",
437
+ "undefined": "__​undefined__"
438
+ },
439
+ {
440
+ "week_end": "2024-10-19",
441
+ "**Numeric Value Property**": "percent_test_positivity",
442
+ "grouping": "A",
443
+ "COVID-19": "5.3",
444
+ "RSV": "1.9",
445
+ "Influenza": "0.7",
446
+ "undefined": "__​undefined__"
447
+ },
448
+ {
449
+ "week_end": "2024-10-26",
450
+ "**Numeric Value Property**": "percent_test_positivity",
451
+ "grouping": "A",
452
+ "COVID-19": "5.0",
453
+ "RSV": "2.1",
454
+ "Influenza": "1.0",
455
+ "undefined": "__​undefined__"
456
+ },
457
+ {
458
+ "week_end": "2024-11-02",
459
+ "**Numeric Value Property**": "percent_test_positivity",
460
+ "grouping": "A",
461
+ "COVID-19": "4.7",
462
+ "RSV": "2.9",
463
+ "Influenza": "1.2",
464
+ "undefined": "__​undefined__"
465
+ },
466
+ {
467
+ "week_end": "2024-11-09",
468
+ "**Numeric Value Property**": "percent_test_positivity",
469
+ "grouping": "A",
470
+ "COVID-19": "4.2",
471
+ "RSV": "3.6",
472
+ "Influenza": "1.5",
473
+ "undefined": "__​undefined__"
474
+ },
475
+ {
476
+ "week_end": "2024-11-16",
477
+ "**Numeric Value Property**": "percent_test_positivity",
478
+ "grouping": "A",
479
+ "COVID-19": "4.1",
480
+ "RSV": "5.5",
481
+ "Influenza": "2.1",
482
+ "undefined": "__​undefined__"
483
+ },
484
+ {
485
+ "week_end": "2024-11-23",
486
+ "**Numeric Value Property**": "percent_test_positivity",
487
+ "grouping": "A",
488
+ "COVID-19": "4.2",
489
+ "RSV": "6.1",
490
+ "Influenza": "2.8",
491
+ "undefined": "__​undefined__"
492
+ },
493
+ {
494
+ "week_end": "2024-11-30",
495
+ "**Numeric Value Property**": "percent_test_positivity",
496
+ "grouping": "A",
497
+ "COVID-19": "4.4",
498
+ "RSV": "8.4",
499
+ "Influenza": "3.9",
500
+ "undefined": "__​undefined__"
501
+ },
502
+ {
503
+ "week_end": "2024-12-07",
504
+ "**Numeric Value Property**": "percent_test_positivity",
505
+ "grouping": "A",
506
+ "COVID-19": "4.8",
507
+ "RSV": "8.4",
508
+ "Influenza": "5.2",
509
+ "undefined": "__​undefined__"
510
+ },
511
+ {
512
+ "week_end": "2024-12-14",
513
+ "**Numeric Value Property**": "percent_test_positivity",
514
+ "grouping": "A",
515
+ "COVID-19": "5.4",
516
+ "RSV": "9.7",
517
+ "Influenza": "8.6",
518
+ "undefined": "__​undefined__"
519
+ },
520
+ {
521
+ "week_end": "2024-12-21",
522
+ "**Numeric Value Property**": "percent_test_positivity",
523
+ "grouping": "A",
524
+ "COVID-19": "6.0",
525
+ "RSV": "11.0",
526
+ "Influenza": "14.2",
527
+ "undefined": "__​undefined__"
528
+ },
529
+ {
530
+ "week_end": "2024-12-28",
531
+ "**Numeric Value Property**": "percent_test_positivity",
532
+ "grouping": "A",
533
+ "COVID-19": "6.5",
534
+ "RSV": "10.9",
535
+ "Influenza": "18.2",
536
+ "undefined": "__​undefined__"
537
+ },
538
+ {
539
+ "week_end": "2025-01-04",
540
+ "**Numeric Value Property**": "percent_test_positivity",
541
+ "grouping": "A",
542
+ "COVID-19": "6.7",
543
+ "RSV": "10.8",
544
+ "Influenza": "18.2",
545
+ "undefined": "__​undefined__"
546
+ },
547
+ {
548
+ "week_end": "2025-01-11",
549
+ "**Numeric Value Property**": "percent_test_positivity",
550
+ "grouping": "A",
551
+ "COVID-19": "6.4",
552
+ "RSV": "8.9",
553
+ "Influenza": "18.4",
554
+ "undefined": "__​undefined__"
555
+ },
556
+ {
557
+ "week_end": "2025-01-18",
558
+ "**Numeric Value Property**": "percent_test_positivity",
559
+ "grouping": "A",
560
+ "COVID-19": "5.6",
561
+ "RSV": "8.1",
562
+ "Influenza": "23.8",
563
+ "undefined": "__​undefined__"
564
+ },
565
+ {
566
+ "week_end": "2025-01-25",
567
+ "**Numeric Value Property**": "percent_test_positivity",
568
+ "grouping": "A",
569
+ "COVID-19": "5.2",
570
+ "RSV": "7.8",
571
+ "Influenza": "28.7",
572
+ "undefined": "__​undefined__"
573
+ },
574
+ {
575
+ "week_end": "2025-02-01",
576
+ "**Numeric Value Property**": "percent_test_positivity",
577
+ "grouping": "A",
578
+ "COVID-19": "4.6",
579
+ "RSV": "6.8",
580
+ "Influenza": "31.6",
581
+ "undefined": "__​undefined__"
582
+ },
583
+ {
584
+ "week_end": "2025-02-08",
585
+ "**Numeric Value Property**": "percent_test_positivity",
586
+ "grouping": "A",
587
+ "COVID-19": "4.5",
588
+ "RSV": "6.7",
589
+ "Influenza": "31.4",
590
+ "undefined": "__​undefined__"
591
+ },
592
+ {
593
+ "week_end": "2025-02-15",
594
+ "**Numeric Value Property**": "percent_test_positivity",
595
+ "grouping": "A",
596
+ "COVID-19": "4.4",
597
+ "RSV": "6.3",
598
+ "Influenza": "27.8",
599
+ "undefined": "__​undefined__"
600
+ },
601
+ {
602
+ "week_end": "2025-02-22",
603
+ "**Numeric Value Property**": "percent_test_positivity",
604
+ "grouping": "A",
605
+ "COVID-19": "4.0",
606
+ "RSV": "6.4",
607
+ "Influenza": "23.9",
608
+ "undefined": "__​undefined__"
609
+ },
610
+ {
611
+ "week_end": "2025-03-01",
612
+ "**Numeric Value Property**": "percent_test_positivity",
613
+ "grouping": "A",
614
+ "COVID-19": "3.8",
615
+ "RSV": "6.1",
616
+ "Influenza": "19.5",
617
+ "undefined": "__​undefined__"
618
+ },
619
+ {
620
+ "week_end": "2025-03-08",
621
+ "**Numeric Value Property**": "percent_test_positivity",
622
+ "grouping": "A",
623
+ "COVID-19": "3.7",
624
+ "RSV": "5.6",
625
+ "Influenza": "15.9",
626
+ "undefined": "__​undefined__"
627
+ },
628
+ {
629
+ "week_end": "2025-03-15",
630
+ "**Numeric Value Property**": "percent_test_positivity",
631
+ "grouping": "A",
632
+ "COVID-19": "3.7",
633
+ "RSV": "5.0",
634
+ "Influenza": "13.3",
635
+ "undefined": "__​undefined__"
636
+ },
637
+ {
638
+ "week_end": "2025-03-22",
639
+ "**Numeric Value Property**": "percent_test_positivity",
640
+ "grouping": "A",
641
+ "COVID-19": "3.7",
642
+ "RSV": "4.2",
643
+ "Influenza": "10.7",
644
+ "undefined": "__​undefined__"
645
+ },
646
+ {
647
+ "week_end": "2025-03-29",
648
+ "**Numeric Value Property**": "percent_test_positivity",
649
+ "grouping": "A",
650
+ "COVID-19": "3.8",
651
+ "RSV": "3.8",
652
+ "Influenza": "9.2",
653
+ "undefined": "__​undefined__"
654
+ },
655
+ {
656
+ "week_end": "2025-04-05",
657
+ "**Numeric Value Property**": "percent_test_positivity",
658
+ "grouping": "A",
659
+ "COVID-19": "3.7",
660
+ "RSV": "2.9",
661
+ "Influenza": "7.6",
662
+ "undefined": "__​undefined__"
663
+ },
664
+ {
665
+ "week_end": "2025-04-12",
666
+ "**Numeric Value Property**": "percent_test_positivity",
667
+ "grouping": "A",
668
+ "COVID-19": "3.5",
669
+ "RSV": "2.4",
670
+ "Influenza": "6.2",
671
+ "undefined": "__​undefined__"
672
+ },
673
+ {
674
+ "week_end": "2025-04-19",
675
+ "**Numeric Value Property**": "percent_test_positivity",
676
+ "grouping": "A",
677
+ "COVID-19": "3.5",
678
+ "RSV": "1.8",
679
+ "Influenza": "5.3",
680
+ "undefined": "__​undefined__"
681
+ },
682
+ {
683
+ "week_end": "2025-04-26",
684
+ "**Numeric Value Property**": "percent_test_positivity",
685
+ "grouping": "A",
686
+ "COVID-19": "3.3",
687
+ "RSV": "1.5",
688
+ "Influenza": "4.4",
689
+ "undefined": "__​undefined__"
690
+ },
691
+ {
692
+ "week_end": "2025-05-03",
693
+ "**Numeric Value Property**": "percent_test_positivity",
694
+ "grouping": "A",
695
+ "COVID-19": "3.0",
696
+ "RSV": "1.1",
697
+ "Influenza": "3.3",
698
+ "undefined": "__​undefined__"
699
+ },
700
+ {
701
+ "week_end": "2025-05-10",
702
+ "**Numeric Value Property**": "percent_test_positivity",
703
+ "grouping": "A",
704
+ "COVID-19": "3.0",
705
+ "RSV": "0.9",
706
+ "Influenza": "2.6",
707
+ "undefined": "__​undefined__"
708
+ },
709
+ {
710
+ "week_end": "2025-05-17",
711
+ "**Numeric Value Property**": "percent_test_positivity",
712
+ "grouping": "A",
713
+ "COVID-19": "2.8",
714
+ "RSV": "0.8",
715
+ "Influenza": "2.1",
716
+ "undefined": "__​undefined__"
717
+ },
718
+ {
719
+ "week_end": "2025-05-24",
720
+ "**Numeric Value Property**": "percent_test_positivity",
721
+ "grouping": "A",
722
+ "COVID-19": "2.7",
723
+ "RSV": "0.6",
724
+ "Influenza": "1.9",
725
+ "undefined": "__​undefined__"
726
+ },
727
+ {
728
+ "week_end": "2025-05-31",
729
+ "**Numeric Value Property**": "percent_test_positivity",
730
+ "grouping": "A",
731
+ "COVID-19": "2.7",
732
+ "RSV": "0.5",
733
+ "Influenza": "1.9",
734
+ "undefined": "__​undefined__"
735
+ },
736
+ {
737
+ "week_end": "2025-06-07",
738
+ "**Numeric Value Property**": "percent_test_positivity",
739
+ "grouping": "A",
740
+ "COVID-19": "2.9",
741
+ "RSV": "0.5",
742
+ "Influenza": "1.6",
743
+ "undefined": "__​undefined__"
744
+ },
745
+ {
746
+ "week_end": "2025-06-14",
747
+ "**Numeric Value Property**": "percent_test_positivity",
748
+ "grouping": "A",
749
+ "COVID-19": "2.9",
750
+ "RSV": "0.5",
751
+ "Influenza": "1.2",
752
+ "undefined": "__​undefined__"
753
+ },
754
+ {
755
+ "week_end": "2025-06-21",
756
+ "**Numeric Value Property**": "percent_test_positivity",
757
+ "grouping": "A",
758
+ "COVID-19": "3.1",
759
+ "RSV": "0.3",
760
+ "Influenza": "1.1",
761
+ "undefined": "__​undefined__"
762
+ },
763
+ {
764
+ "week_end": "2025-06-28",
765
+ "**Numeric Value Property**": "percent_test_positivity",
766
+ "grouping": "A",
767
+ "COVID-19": "3.3",
768
+ "RSV": "0.3",
769
+ "Influenza": "0.9",
770
+ "undefined": "__​undefined__"
771
+ },
772
+ {
773
+ "week_end": "2025-07-05",
774
+ "**Numeric Value Property**": "percent_test_positivity",
775
+ "grouping": "A",
776
+ "COVID-19": "3.9",
777
+ "RSV": "0.4",
778
+ "Influenza": "0.8",
779
+ "undefined": "__​undefined__"
780
+ },
781
+ {
782
+ "week_end": "2025-07-12",
783
+ "**Numeric Value Property**": "percent_test_positivity",
784
+ "grouping": "A",
785
+ "COVID-19": "4.9",
786
+ "RSV": "0.4",
787
+ "Influenza": "0.8",
788
+ "undefined": "__​undefined__"
789
+ },
790
+ {
791
+ "week_end": "2025-07-19",
792
+ "**Numeric Value Property**": "percent_test_positivity",
793
+ "grouping": "A",
794
+ "COVID-19": "5.1",
795
+ "RSV": "0.4",
796
+ "Influenza": "0.5",
797
+ "undefined": "__​undefined__"
798
+ },
799
+ {
800
+ "week_end": "2025-07-26",
801
+ "**Numeric Value Property**": "percent_test_positivity",
802
+ "grouping": "A",
803
+ "COVID-19": "6.9",
804
+ "RSV": "0.3",
805
+ "Influenza": "0.4",
806
+ "undefined": "__​undefined__"
807
+ },
808
+ {
809
+ "week_end": "2025-08-02",
810
+ "**Numeric Value Property**": "percent_test_positivity",
811
+ "grouping": "A",
812
+ "COVID-19": "8.1",
813
+ "RSV": "0.4",
814
+ "Influenza": "0.4",
815
+ "undefined": "__​undefined__"
816
+ },
817
+ {
818
+ "week_end": "2025-08-09",
819
+ "**Numeric Value Property**": "percent_test_positivity",
820
+ "grouping": "A",
821
+ "COVID-19": "8.9",
822
+ "RSV": "0.4",
823
+ "Influenza": "0.4",
824
+ "undefined": "__​undefined__"
825
+ },
826
+ {
827
+ "week_end": "2025-08-16",
828
+ "**Numeric Value Property**": "percent_test_positivity",
829
+ "grouping": "A",
830
+ "COVID-19": "10.5",
831
+ "RSV": "0.3",
832
+ "Influenza": "0.3",
833
+ "undefined": "__​undefined__"
834
+ },
835
+ {
836
+ "week_end": "2025-08-23",
837
+ "**Numeric Value Property**": "percent_test_positivity",
838
+ "grouping": "A",
839
+ "COVID-19": "11.7",
840
+ "RSV": "0.3",
841
+ "Influenza": "0.4",
842
+ "undefined": "__​undefined__"
843
+ },
844
+ {
845
+ "week_end": "2025-08-30",
846
+ "**Numeric Value Property**": "percent_test_positivity",
847
+ "grouping": "A",
848
+ "COVID-19": "11.2",
849
+ "RSV": "0.3",
850
+ "Influenza": "0.4",
851
+ "undefined": "__​undefined__"
852
+ },
853
+ {
854
+ "week_end": "2025-09-06",
855
+ "**Numeric Value Property**": "percent_test_positivity",
856
+ "grouping": "A",
857
+ "COVID-19": "10.8",
858
+ "RSV": "0.3",
859
+ "Influenza": "0.4",
860
+ "undefined": "__​undefined__"
861
+ },
862
+ {
863
+ "week_end": "2024-10-05",
864
+ "**Numeric Value Property**": "percent_test_positivity",
865
+ "grouping": "B",
866
+ "COVID-19": "7.4",
867
+ "RSV": "1.1",
868
+ "Influenza": "0.7",
869
+ "undefined": "__​undefined__"
870
+ },
871
+ {
872
+ "week_end": "2024-10-12",
873
+ "**Numeric Value Property**": "percent_test_positivity",
874
+ "grouping": "B",
875
+ "COVID-19": "6.3",
876
+ "RSV": "1.2",
877
+ "Influenza": "0.7",
878
+ "undefined": "__​undefined__"
879
+ },
880
+ {
881
+ "week_end": "2024-10-19",
882
+ "**Numeric Value Property**": "percent_test_positivity",
883
+ "grouping": "B",
884
+ "COVID-19": "5.3",
885
+ "RSV": "1.9",
886
+ "Influenza": "0.7",
887
+ "undefined": "__​undefined__"
888
+ },
889
+ {
890
+ "week_end": "2024-10-26",
891
+ "**Numeric Value Property**": "percent_test_positivity",
892
+ "grouping": "B",
893
+ "COVID-19": "5.0",
894
+ "RSV": "2.1",
895
+ "Influenza": "1.0",
896
+ "undefined": "__​undefined__"
897
+ },
898
+ {
899
+ "week_end": "2024-11-02",
900
+ "**Numeric Value Property**": "percent_test_positivity",
901
+ "grouping": "B",
902
+ "COVID-19": "4.7",
903
+ "RSV": "2.9",
904
+ "Influenza": "1.2",
905
+ "undefined": "__​undefined__"
906
+ },
907
+ {
908
+ "week_end": "2024-11-09",
909
+ "**Numeric Value Property**": "percent_test_positivity",
910
+ "grouping": "B",
911
+ "COVID-19": "4.2",
912
+ "RSV": "3.6",
913
+ "Influenza": "1.5",
914
+ "undefined": "__​undefined__"
915
+ },
916
+ {
917
+ "week_end": "2024-11-16",
918
+ "**Numeric Value Property**": "percent_test_positivity",
919
+ "grouping": "B",
920
+ "COVID-19": "4.1",
921
+ "RSV": "5.5",
922
+ "Influenza": "2.1",
923
+ "undefined": "__​undefined__"
924
+ },
925
+ {
926
+ "week_end": "2024-11-23",
927
+ "**Numeric Value Property**": "percent_test_positivity",
928
+ "grouping": "B",
929
+ "COVID-19": "4.2",
930
+ "RSV": "6.1",
931
+ "Influenza": "2.8",
932
+ "undefined": "__​undefined__"
933
+ },
934
+ {
935
+ "week_end": "2024-11-30",
936
+ "**Numeric Value Property**": "percent_test_positivity",
937
+ "grouping": "B",
938
+ "COVID-19": "4.4",
939
+ "RSV": "8.4",
940
+ "Influenza": "3.9",
941
+ "undefined": "__​undefined__"
942
+ },
943
+ {
944
+ "week_end": "2024-12-07",
945
+ "**Numeric Value Property**": "percent_test_positivity",
946
+ "grouping": "B",
947
+ "COVID-19": "4.8",
948
+ "RSV": "8.4",
949
+ "Influenza": "5.2",
950
+ "undefined": "__​undefined__"
951
+ },
952
+ {
953
+ "week_end": "2024-12-14",
954
+ "**Numeric Value Property**": "percent_test_positivity",
955
+ "grouping": "B",
956
+ "COVID-19": "5.4",
957
+ "RSV": "9.7",
958
+ "Influenza": "8.6",
959
+ "undefined": "__​undefined__"
960
+ },
961
+ {
962
+ "week_end": "2024-12-21",
963
+ "**Numeric Value Property**": "percent_test_positivity",
964
+ "grouping": "B",
965
+ "COVID-19": "6.0",
966
+ "RSV": "11.0",
967
+ "Influenza": "14.2",
968
+ "undefined": "__​undefined__"
969
+ },
970
+ {
971
+ "week_end": "2024-12-28",
972
+ "**Numeric Value Property**": "percent_test_positivity",
973
+ "grouping": "B",
974
+ "COVID-19": "6.5",
975
+ "RSV": "10.9",
976
+ "Influenza": "18.2",
977
+ "undefined": "__​undefined__"
978
+ },
979
+ {
980
+ "week_end": "2025-01-04",
981
+ "**Numeric Value Property**": "percent_test_positivity",
982
+ "grouping": "B",
983
+ "COVID-19": "6.7",
984
+ "RSV": "10.8",
985
+ "Influenza": "18.2",
986
+ "undefined": "__​undefined__"
987
+ },
988
+ {
989
+ "week_end": "2025-01-11",
990
+ "**Numeric Value Property**": "percent_test_positivity",
991
+ "grouping": "B",
992
+ "COVID-19": "6.4",
993
+ "RSV": "8.9",
994
+ "Influenza": "18.4",
995
+ "undefined": "__​undefined__"
996
+ },
997
+ {
998
+ "week_end": "2025-01-18",
999
+ "**Numeric Value Property**": "percent_test_positivity",
1000
+ "grouping": "B",
1001
+ "COVID-19": "5.6",
1002
+ "RSV": "8.1",
1003
+ "Influenza": "23.8",
1004
+ "undefined": "__​undefined__"
1005
+ },
1006
+ {
1007
+ "week_end": "2025-01-25",
1008
+ "**Numeric Value Property**": "percent_test_positivity",
1009
+ "grouping": "B",
1010
+ "COVID-19": "5.2",
1011
+ "RSV": "7.8",
1012
+ "Influenza": "28.7",
1013
+ "undefined": "__​undefined__"
1014
+ },
1015
+ {
1016
+ "week_end": "2025-02-01",
1017
+ "**Numeric Value Property**": "percent_test_positivity",
1018
+ "grouping": "B",
1019
+ "COVID-19": "4.6",
1020
+ "RSV": "6.8",
1021
+ "Influenza": "31.6",
1022
+ "undefined": "__​undefined__"
1023
+ },
1024
+ {
1025
+ "week_end": "2025-02-08",
1026
+ "**Numeric Value Property**": "percent_test_positivity",
1027
+ "grouping": "B",
1028
+ "COVID-19": "4.5",
1029
+ "RSV": "6.7",
1030
+ "Influenza": "31.4",
1031
+ "undefined": "__​undefined__"
1032
+ },
1033
+ {
1034
+ "week_end": "2025-02-15",
1035
+ "**Numeric Value Property**": "percent_test_positivity",
1036
+ "grouping": "B",
1037
+ "COVID-19": "4.4",
1038
+ "RSV": "6.3",
1039
+ "Influenza": "27.8",
1040
+ "undefined": "__​undefined__"
1041
+ },
1042
+ {
1043
+ "week_end": "2025-02-22",
1044
+ "**Numeric Value Property**": "percent_test_positivity",
1045
+ "grouping": "B",
1046
+ "COVID-19": "4.0",
1047
+ "RSV": "6.4",
1048
+ "Influenza": "23.9",
1049
+ "undefined": "__​undefined__"
1050
+ },
1051
+ {
1052
+ "week_end": "2025-03-01",
1053
+ "**Numeric Value Property**": "percent_test_positivity",
1054
+ "grouping": "B",
1055
+ "COVID-19": "3.8",
1056
+ "RSV": "6.1",
1057
+ "Influenza": "19.5",
1058
+ "undefined": "__​undefined__"
1059
+ },
1060
+ {
1061
+ "week_end": "2025-03-08",
1062
+ "**Numeric Value Property**": "percent_test_positivity",
1063
+ "grouping": "B",
1064
+ "COVID-19": "3.7",
1065
+ "RSV": "5.6",
1066
+ "Influenza": "15.9",
1067
+ "undefined": "__​undefined__"
1068
+ },
1069
+ {
1070
+ "week_end": "2025-03-15",
1071
+ "**Numeric Value Property**": "percent_test_positivity",
1072
+ "grouping": "B",
1073
+ "COVID-19": "3.7",
1074
+ "RSV": "5.0",
1075
+ "Influenza": "13.3",
1076
+ "undefined": "__​undefined__"
1077
+ },
1078
+ {
1079
+ "week_end": "2025-03-22",
1080
+ "**Numeric Value Property**": "percent_test_positivity",
1081
+ "grouping": "B",
1082
+ "COVID-19": "3.7",
1083
+ "RSV": "4.2",
1084
+ "Influenza": "10.7",
1085
+ "undefined": "__​undefined__"
1086
+ },
1087
+ {
1088
+ "week_end": "2025-03-29",
1089
+ "**Numeric Value Property**": "percent_test_positivity",
1090
+ "grouping": "B",
1091
+ "COVID-19": "3.8",
1092
+ "RSV": "3.8",
1093
+ "Influenza": "9.2",
1094
+ "undefined": "__​undefined__"
1095
+ },
1096
+ {
1097
+ "week_end": "2025-04-05",
1098
+ "**Numeric Value Property**": "percent_test_positivity",
1099
+ "grouping": "B",
1100
+ "COVID-19": "3.7",
1101
+ "RSV": "2.9",
1102
+ "Influenza": "7.6",
1103
+ "undefined": "__​undefined__"
1104
+ },
1105
+ {
1106
+ "week_end": "2025-04-12",
1107
+ "**Numeric Value Property**": "percent_test_positivity",
1108
+ "grouping": "B",
1109
+ "COVID-19": "3.5",
1110
+ "RSV": "2.4",
1111
+ "Influenza": "6.2",
1112
+ "undefined": "__​undefined__"
1113
+ },
1114
+ {
1115
+ "week_end": "2025-04-19",
1116
+ "**Numeric Value Property**": "percent_test_positivity",
1117
+ "grouping": "B",
1118
+ "COVID-19": "3.5",
1119
+ "RSV": "1.8",
1120
+ "Influenza": "5.3",
1121
+ "undefined": "__​undefined__"
1122
+ },
1123
+ {
1124
+ "week_end": "2025-04-26",
1125
+ "**Numeric Value Property**": "percent_test_positivity",
1126
+ "grouping": "B",
1127
+ "COVID-19": "3.3",
1128
+ "RSV": "1.5",
1129
+ "Influenza": "4.4",
1130
+ "undefined": "__​undefined__"
1131
+ },
1132
+ {
1133
+ "week_end": "2025-05-03",
1134
+ "**Numeric Value Property**": "percent_test_positivity",
1135
+ "grouping": "B",
1136
+ "COVID-19": "3.0",
1137
+ "RSV": "1.1",
1138
+ "Influenza": "3.3",
1139
+ "undefined": "__​undefined__"
1140
+ },
1141
+ {
1142
+ "week_end": "2025-05-10",
1143
+ "**Numeric Value Property**": "percent_test_positivity",
1144
+ "grouping": "B",
1145
+ "COVID-19": "3.0",
1146
+ "RSV": "0.9",
1147
+ "Influenza": "2.6",
1148
+ "undefined": "__​undefined__"
1149
+ },
1150
+ {
1151
+ "week_end": "2025-05-17",
1152
+ "**Numeric Value Property**": "percent_test_positivity",
1153
+ "grouping": "B",
1154
+ "COVID-19": "2.8",
1155
+ "RSV": "0.8",
1156
+ "Influenza": "2.1",
1157
+ "undefined": "__​undefined__"
1158
+ },
1159
+ {
1160
+ "week_end": "2025-05-24",
1161
+ "**Numeric Value Property**": "percent_test_positivity",
1162
+ "grouping": "B",
1163
+ "COVID-19": "2.7",
1164
+ "RSV": "0.6",
1165
+ "Influenza": "1.9",
1166
+ "undefined": "__​undefined__"
1167
+ },
1168
+ {
1169
+ "week_end": "2025-05-31",
1170
+ "**Numeric Value Property**": "percent_test_positivity",
1171
+ "grouping": "B",
1172
+ "COVID-19": "2.7",
1173
+ "RSV": "0.5",
1174
+ "Influenza": "1.9",
1175
+ "undefined": "__​undefined__"
1176
+ },
1177
+ {
1178
+ "week_end": "2025-06-07",
1179
+ "**Numeric Value Property**": "percent_test_positivity",
1180
+ "grouping": "B",
1181
+ "COVID-19": "2.9",
1182
+ "RSV": "0.5",
1183
+ "Influenza": "1.6",
1184
+ "undefined": "__​undefined__"
1185
+ },
1186
+ {
1187
+ "week_end": "2025-06-14",
1188
+ "**Numeric Value Property**": "percent_test_positivity",
1189
+ "grouping": "B",
1190
+ "COVID-19": "2.9",
1191
+ "RSV": "0.5",
1192
+ "Influenza": "1.2",
1193
+ "undefined": "__​undefined__"
1194
+ },
1195
+ {
1196
+ "week_end": "2025-06-21",
1197
+ "**Numeric Value Property**": "percent_test_positivity",
1198
+ "grouping": "B",
1199
+ "COVID-19": "3.1",
1200
+ "RSV": "0.3",
1201
+ "Influenza": "1.1",
1202
+ "undefined": "__​undefined__"
1203
+ },
1204
+ {
1205
+ "week_end": "2025-06-28",
1206
+ "**Numeric Value Property**": "percent_test_positivity",
1207
+ "grouping": "B",
1208
+ "COVID-19": "3.3",
1209
+ "RSV": "0.3",
1210
+ "Influenza": "0.9",
1211
+ "undefined": "__​undefined__"
1212
+ },
1213
+ {
1214
+ "week_end": "2025-07-05",
1215
+ "**Numeric Value Property**": "percent_test_positivity",
1216
+ "grouping": "B",
1217
+ "COVID-19": "3.9",
1218
+ "RSV": "0.4",
1219
+ "Influenza": "0.8",
1220
+ "undefined": "__​undefined__"
1221
+ },
1222
+ {
1223
+ "week_end": "2025-07-12",
1224
+ "**Numeric Value Property**": "percent_test_positivity",
1225
+ "grouping": "B",
1226
+ "COVID-19": "4.9",
1227
+ "RSV": "0.4",
1228
+ "Influenza": "0.8",
1229
+ "undefined": "__​undefined__"
1230
+ },
1231
+ {
1232
+ "week_end": "2025-07-19",
1233
+ "**Numeric Value Property**": "percent_test_positivity",
1234
+ "grouping": "B",
1235
+ "COVID-19": "5.1",
1236
+ "RSV": "0.4",
1237
+ "Influenza": "0.5",
1238
+ "undefined": "__​undefined__"
1239
+ },
1240
+ {
1241
+ "week_end": "2025-07-26",
1242
+ "**Numeric Value Property**": "percent_test_positivity",
1243
+ "grouping": "B",
1244
+ "COVID-19": "6.9",
1245
+ "RSV": "0.3",
1246
+ "Influenza": "0.4",
1247
+ "undefined": "__​undefined__"
1248
+ },
1249
+ {
1250
+ "week_end": "2025-08-02",
1251
+ "**Numeric Value Property**": "percent_test_positivity",
1252
+ "grouping": "B",
1253
+ "COVID-19": "8.1",
1254
+ "RSV": "0.4",
1255
+ "Influenza": "0.4",
1256
+ "undefined": "__​undefined__"
1257
+ },
1258
+ {
1259
+ "week_end": "2025-08-09",
1260
+ "**Numeric Value Property**": "percent_test_positivity",
1261
+ "grouping": "B",
1262
+ "COVID-19": "8.9",
1263
+ "RSV": "0.4",
1264
+ "Influenza": "0.4",
1265
+ "undefined": "__​undefined__"
1266
+ },
1267
+ {
1268
+ "week_end": "2025-08-16",
1269
+ "**Numeric Value Property**": "percent_test_positivity",
1270
+ "grouping": "B",
1271
+ "COVID-19": "10.5",
1272
+ "RSV": "0.3",
1273
+ "Influenza": "0.3",
1274
+ "undefined": "__​undefined__"
1275
+ },
1276
+ {
1277
+ "week_end": "2025-08-23",
1278
+ "**Numeric Value Property**": "percent_test_positivity",
1279
+ "grouping": "B",
1280
+ "COVID-19": "11.7",
1281
+ "RSV": "0.3",
1282
+ "Influenza": "0.4",
1283
+ "undefined": "__​undefined__"
1284
+ },
1285
+ {
1286
+ "week_end": "2025-08-30",
1287
+ "**Numeric Value Property**": "percent_test_positivity",
1288
+ "grouping": "B",
1289
+ "COVID-19": "11.2",
1290
+ "RSV": "0.3",
1291
+ "Influenza": "0.4",
1292
+ "undefined": "__​undefined__"
1293
+ },
1294
+ {
1295
+ "week_end": "2025-09-06",
1296
+ "**Numeric Value Property**": "percent_test_positivity",
1297
+ "grouping": "B",
1298
+ "COVID-19": "10.8",
1299
+ "RSV": "0.3",
1300
+ "Influenza": "0.4",
1301
+ "undefined": "__​undefined__"
1302
+ }
1303
+ ],
1304
+ "datasets": {}
1305
+ }