@cdc/chart 4.25.10 → 4.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
  2. package/dist/cdcchart.js +44003 -43518
  3. package/examples/feature/__data__/planet-example-data.json +1 -1
  4. package/examples/feature/boxplot/valid-boxplot.csv +38 -17
  5. package/examples/feature/pie/planet-pie-example-config.json +48 -2
  6. package/examples/private/DEV-11825.json +573 -0
  7. package/examples/private/DEV-12100.json +1303 -0
  8. package/examples/private/cat-y.json +1235 -0
  9. package/examples/private/data-points.json +228 -0
  10. package/examples/private/height.json +3915 -0
  11. package/examples/private/links.json +569 -0
  12. package/examples/private/na.json +913 -0
  13. package/examples/private/quadrant.txt +30 -0
  14. package/examples/private/test-data.csv +28 -0
  15. package/examples/private/test-forecast.json +5510 -0
  16. package/examples/private/warming-stripe-test.json +2578 -0
  17. package/examples/private/warming-stripes.json +4763 -0
  18. package/examples/tech-adoption-with-links.json +560 -0
  19. package/index.html +16 -140
  20. package/package.json +6 -5
  21. package/preview.html +1616 -0
  22. package/src/CdcChart.tsx +8 -11
  23. package/src/CdcChartComponent.tsx +329 -124
  24. package/src/_stories/Chart.Combo.stories.tsx +18 -0
  25. package/src/_stories/Chart.Forecast.stories.tsx +36 -0
  26. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
  27. package/src/_stories/Chart.Patterns.stories.tsx +2 -1
  28. package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
  29. package/src/_stories/Chart.Regions.Categorical.stories.tsx +148 -0
  30. package/src/_stories/Chart.Regions.DateScale.stories.tsx +197 -0
  31. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +297 -0
  32. package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
  33. package/src/_stories/Chart.stories.tsx +8 -0
  34. package/src/_stories/ChartAnnotation.stories.tsx +6 -3
  35. package/src/_stories/ChartBar.Editor.stories.tsx +3585 -0
  36. package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
  37. package/src/_stories/ChartBrush.stories.tsx +50 -0
  38. package/src/_stories/ChartEditor.Editor.stories.tsx +656 -0
  39. package/src/_stories/ChartEditor.stories.tsx +1 -2
  40. package/src/_stories/TechAdoptionWithLinks.stories.tsx +27 -0
  41. package/src/_stories/_mock/brush_enabled.json +326 -0
  42. package/src/_stories/_mock/brush_mock.json +2 -69
  43. package/src/_stories/_mock/combo.json +451 -0
  44. package/src/_stories/_mock/editor-test-configs.json +376 -0
  45. package/src/_stories/_mock/editor-test-datasets.json +477 -0
  46. package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
  47. package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
  48. package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
  49. package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
  50. package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
  51. package/src/_stories/_mock/pie_config.json +257 -62
  52. package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
  53. package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
  54. package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
  55. package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
  56. package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
  57. package/src/components/Annotations/components/findNearestDatum.ts +6 -41
  58. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -7
  59. package/src/components/AreaChart/index.tsx +1 -2
  60. package/src/components/Axis/Categorical.Axis.tsx +6 -7
  61. package/src/components/BarChart/components/BarChart.Horizontal.tsx +181 -27
  62. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
  63. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
  64. package/src/components/BarChart/components/BarChart.Vertical.tsx +8 -9
  65. package/src/components/BarChart/components/context.tsx +1 -0
  66. package/src/components/BarChart/helpers/useBarChart.ts +14 -2
  67. package/src/components/BoxPlot/helpers/index.ts +3 -3
  68. package/src/components/Brush/BrushSelector.tsx +1258 -0
  69. package/src/components/Brush/MiniChartPreview.tsx +283 -0
  70. package/src/components/DeviationBar.jsx +9 -7
  71. package/src/components/EditorPanel/EditorPanel.tsx +2720 -2586
  72. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
  73. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
  74. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +76 -31
  75. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +104 -55
  76. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +54 -49
  77. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +427 -0
  78. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +96 -48
  79. package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
  80. package/src/components/EditorPanel/editor-panel.scss +0 -20
  81. package/src/components/EditorPanel/useEditorPermissions.ts +36 -31
  82. package/src/components/Forecasting/Forecasting.tsx +139 -21
  83. package/src/components/Legend/Legend.Component.tsx +16 -9
  84. package/src/components/Legend/Legend.tsx +3 -2
  85. package/src/components/Legend/helpers/createFormatLabels.tsx +325 -176
  86. package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
  87. package/src/components/Legend/helpers/index.ts +10 -6
  88. package/src/components/LineChart/LineChartProps.ts +0 -3
  89. package/src/components/LineChart/helpers.ts +1 -1
  90. package/src/components/LineChart/index.tsx +36 -13
  91. package/src/components/LinearChart.tsx +559 -499
  92. package/src/components/PairedBarChart.jsx +20 -3
  93. package/src/components/Regions/components/Regions.tsx +366 -144
  94. package/src/components/Sankey/types/index.ts +1 -1
  95. package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
  96. package/src/components/SmallMultiples/SmallMultipleTile.tsx +202 -0
  97. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  98. package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
  99. package/src/components/SmallMultiples/index.ts +2 -0
  100. package/src/components/WarmingStripes/WarmingStripes.tsx +160 -0
  101. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
  102. package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
  103. package/src/components/WarmingStripes/index.tsx +3 -0
  104. package/src/data/initial-state.js +16 -2
  105. package/src/helpers/buildForecastPaletteOptions.ts +0 -38
  106. package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
  107. package/src/helpers/getColorScale.ts +10 -0
  108. package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +26 -14
  109. package/src/helpers/getYAxisAutoPadding.ts +53 -0
  110. package/src/helpers/sizeHelpers.ts +0 -20
  111. package/src/helpers/smallMultiplesHelpers.ts +529 -0
  112. package/src/hooks/useChartHoverAnalytics.tsx +10 -9
  113. package/src/hooks/useProgrammaticTooltip.ts +96 -0
  114. package/src/hooks/useScales.ts +98 -34
  115. package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
  116. package/src/hooks/useTooltip.tsx +91 -25
  117. package/src/scss/DataTable.scss +0 -4
  118. package/src/scss/main.scss +18 -83
  119. package/src/store/chart.actions.ts +2 -0
  120. package/src/store/chart.reducer.ts +4 -0
  121. package/src/test/CdcChart.test.jsx +1 -1
  122. package/src/types/ChartConfig.ts +27 -6
  123. package/src/types/ChartContext.ts +3 -0
  124. package/src/types/Label.ts +1 -0
  125. package/src/utils/analyticsTracking.ts +19 -0
  126. package/LICENSE +0 -201
  127. package/src/_stories/_mock/pie_data.json +0 -218
  128. package/src/components/AreaChart/components/AreaChart.jsx +0 -109
  129. package/src/components/Brush/BrushChart.tsx +0 -128
  130. package/src/components/Brush/BrushController.tsx +0 -71
  131. package/src/components/Brush/types.tsx +0 -8
  132. package/src/components/BrushChart.tsx +0 -223
  133. package/src/helpers/sort.ts +0 -7
  134. package/src/hooks/useActiveElement.js +0 -19
  135. package/src/hooks/useChartClasses.js +0 -41
@@ -0,0 +1,1944 @@
1
+ {
2
+ "annotations": [],
3
+ "allowLineToBarGraph": "__​undefined__",
4
+ "type": "chart",
5
+ "debugSvg": false,
6
+ "chartMessage": {
7
+ "noData": "No Data Available"
8
+ },
9
+ "title": "",
10
+ "showTitle": false,
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": "stacked",
21
+ "barStyle": "",
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
+ "customColors": [
34
+ "#012551",
35
+ "#1192E9",
36
+ "#002D9D",
37
+ "#A66EFF",
38
+ "#0A6C75",
39
+ "#C0F2FD",
40
+ "#C0F2FD",
41
+ "#C0F2FD",
42
+ "#C0F2FD"
43
+ ],
44
+ "version": "1.0",
45
+ "backups": [
46
+ {
47
+ "name": "qualitative_bold",
48
+ "version": "1.0",
49
+ "isReversed": "__​undefined__"
50
+ }
51
+ ]
52
+ }
53
+ },
54
+ "padding": {
55
+ "left": 5,
56
+ "right": 5
57
+ },
58
+ "preliminaryData": [],
59
+ "yAxis": {
60
+ "hideAxis": true,
61
+ "displayNumbersOnBar": false,
62
+ "hideLabel": false,
63
+ "hideTicks": true,
64
+ "size": "55",
65
+ "gridLines": true,
66
+ "enablePadding": false,
67
+ "min": "",
68
+ "max": "",
69
+ "labelColor": "#1c1d1f",
70
+ "tickLabelColor": "#1c1d1f",
71
+ "tickColor": "#1c1d1f",
72
+ "rightHideAxis": true,
73
+ "rightAxisSize": 0,
74
+ "rightLabel": "",
75
+ "rightLabelOffsetSize": 0,
76
+ "rightAxisLabelColor": "#1c1d1f",
77
+ "rightAxisTickLabelColor": "#1c1d1f",
78
+ "rightAxisTickColor": "#1c1d1f",
79
+ "numTicks": "4",
80
+ "axisPadding": 0,
81
+ "scalePadding": 10,
82
+ "tickRotation": 0,
83
+ "anchors": [],
84
+ "shoMissingDataLabel": true,
85
+ "showMissingDataLine": true,
86
+ "categories": [],
87
+ "maxValue": 100.10000000000001,
88
+ "label": "",
89
+ "inlineLabel": "%"
90
+ },
91
+ "boxplot": {
92
+ "plots": [],
93
+ "borders": "true",
94
+ "plotOutlierValues": false,
95
+ "plotNonOutlierValues": true,
96
+ "labels": {
97
+ "q1": "Lower Quartile",
98
+ "q2": "q2",
99
+ "q3": "Upper Quartile",
100
+ "q4": "q4",
101
+ "minimum": "Minimum",
102
+ "maximum": "Maximum",
103
+ "mean": "Mean",
104
+ "median": "Median",
105
+ "sd": "Standard Deviation",
106
+ "iqr": "Interquartile Range",
107
+ "total": "Total",
108
+ "outliers": "Outliers",
109
+ "values": "Values",
110
+ "lowerBounds": "Lower Bounds",
111
+ "upperBounds": "Upper Bounds",
112
+ "count": "Count"
113
+ },
114
+ "firstQuartilePercentage": 25,
115
+ "thirdQuartilePercentage": 75,
116
+ "boxWidthPercentage": 40,
117
+ "legend": {
118
+ "showHowToReadText": false,
119
+ "howToReadText": ""
120
+ }
121
+ },
122
+ "topAxis": {
123
+ "hasLine": false
124
+ },
125
+ "isLegendValue": false,
126
+ "barThickness": "0.8",
127
+ "barHeight": 25,
128
+ "barSpace": 15,
129
+ "heights": {
130
+ "vertical": "250",
131
+ "horizontal": 750,
132
+ "mobileVertical": "150"
133
+ },
134
+ "xAxis": {
135
+ "sortDates": false,
136
+ "anchors": [],
137
+ "type": "date",
138
+ "showTargetLabel": true,
139
+ "targetLabel": "Target",
140
+ "hideAxis": false,
141
+ "hideLabel": false,
142
+ "hideTicks": false,
143
+ "size": 75,
144
+ "tickRotation": 0,
145
+ "min": "",
146
+ "max": "",
147
+ "labelColor": "#1c1d1f",
148
+ "tickLabelColor": "#1c1d1f",
149
+ "tickColor": "#1c1d1f",
150
+ "numTicks": "6",
151
+ "labelOffset": 0,
152
+ "axisPadding": 200,
153
+ "target": 0,
154
+ "maxTickRotation": "45",
155
+ "padding": 6,
156
+ "showYearsOnce": false,
157
+ "sortByRecentDate": false,
158
+ "brushActive": false,
159
+ "dataKey": "week_end",
160
+ "axisBBox": 45.86000061035156,
161
+ "tickWidthMax": 98,
162
+ "label": "",
163
+ "dateParseFormat": "%Y-%m-%d",
164
+ "dateDisplayFormat": "%b. %-d %Y",
165
+ "manual": false,
166
+ "manualStep": "2",
167
+ "viewportStepCount": {
168
+ "sm": "2",
169
+ "xs": "4",
170
+ "xxs": "4"
171
+ },
172
+ "viewportNumTicks": {
173
+ "sm": "4",
174
+ "xs": "4",
175
+ "xxs": "3"
176
+ }
177
+ },
178
+ "table": {
179
+ "label": "Data Table",
180
+ "expanded": false,
181
+ "limitHeight": false,
182
+ "height": "",
183
+ "caption": "",
184
+ "showDownloadUrl": false,
185
+ "showDataTableLink": true,
186
+ "showDownloadLinkBelow": true,
187
+ "indexLabel": "Week Ending",
188
+ "download": true,
189
+ "showVertical": true,
190
+ "dateDisplayFormat": "",
191
+ "showMissingDataLabel": true,
192
+ "showSuppressedSymbol": true,
193
+ "collapsible": true,
194
+ "show": true
195
+ },
196
+ "orientation": "vertical",
197
+ "columns": {},
198
+ "legend": {
199
+ "hide": true,
200
+ "behavior": "isolate",
201
+ "axisAlign": true,
202
+ "singleRow": true,
203
+ "colorCode": "",
204
+ "reverseLabelOrder": false,
205
+ "description": "",
206
+ "dynamicLegend": false,
207
+ "dynamicLegendDefaultText": "Show All",
208
+ "dynamicLegendItemLimit": 5,
209
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
210
+ "dynamicLegendChartMessage": "Select Options from the Legend",
211
+ "label": "",
212
+ "lineMode": false,
213
+ "verticalSorted": false,
214
+ "highlightOnHover": false,
215
+ "hideSuppressedLabels": false,
216
+ "hideSuppressionLink": false,
217
+ "seriesHighlight": [],
218
+ "style": "circles",
219
+ "subStyle": "linear blocks",
220
+ "groupBy": "",
221
+ "shape": "circle",
222
+ "tickRotation": "",
223
+ "order": "dataColumn",
224
+ "hideBorder": {
225
+ "side": false,
226
+ "topBottom": true
227
+ },
228
+ "position": "top",
229
+ "orderedValues": [],
230
+ "patterns": {},
231
+ "patternField": "",
232
+ "unified": true
233
+ },
234
+ "smallMultiples": {
235
+ "mode": "by-series",
236
+ "tileColumn": "",
237
+ "tilesPerRowDesktop": "2",
238
+ "tilesPerRowMobile": 2,
239
+ "independentYAxis": false,
240
+ "tileOrder": [],
241
+ "tileOrderType": "asc",
242
+ "tileTitles": {},
243
+ "colorMode": "same",
244
+ "synchronizedTooltips": true
245
+ },
246
+ "exclusions": {
247
+ "active": false,
248
+ "keys": []
249
+ },
250
+ "twoColor": {
251
+ "palette": "monochrome-1",
252
+ "isPaletteReversed": false
253
+ },
254
+ "labels": false,
255
+ "dataFormat": {
256
+ "commas": false,
257
+ "prefix": "",
258
+ "suffix": "",
259
+ "abbreviated": true,
260
+ "bottomSuffix": "",
261
+ "bottomPrefix": "",
262
+ "bottomAbbreviated": false,
263
+ "roundTo": "1"
264
+ },
265
+ "filters": [
266
+ {
267
+ "values": ["COVID-19", "Influenza", "RSV"],
268
+ "filterStyle": "dropdown",
269
+ "id": 1726689614021,
270
+ "columnName": "pathogen",
271
+ "showDropdown": false,
272
+ "active": "Influenza",
273
+ "setByQueryParameter": "Influenza"
274
+ },
275
+ {
276
+ "values": ["Adults", "Children"],
277
+ "filterStyle": "tab-simple",
278
+ "id": 1729201744650,
279
+ "active": "Adults",
280
+ "columnName": "demographic_group",
281
+ "orderedValues": ["Adults", "Children"]
282
+ }
283
+ ],
284
+ "confidenceKeys": {},
285
+ "visual": {
286
+ "border": true,
287
+ "accent": true,
288
+ "background": true,
289
+ "verticalHoverLine": false,
290
+ "horizontalHoverLine": false,
291
+ "lineDatapointSymbol": "none",
292
+ "maximumShapeAmount": 7
293
+ },
294
+ "useLogScale": false,
295
+ "filterBehavior": "Filter Change",
296
+ "highlightedBarValues": [],
297
+ "series": [
298
+ {
299
+ "dataKey": "Received vaccine",
300
+ "type": "Bar",
301
+ "axis": "Left",
302
+ "tooltip": true
303
+ },
304
+ {
305
+ "dataKey": "Definitely will get a vaccine",
306
+ "type": "Bar",
307
+ "axis": "Left",
308
+ "tooltip": true
309
+ },
310
+ {
311
+ "dataKey": "Probably will get a vaccine or are unsure",
312
+ "type": "Bar",
313
+ "axis": "Left",
314
+ "tooltip": true
315
+ },
316
+ {
317
+ "dataKey": "Probably or definitely will not get a vaccine",
318
+ "type": "Bar",
319
+ "axis": "Left",
320
+ "tooltip": true
321
+ }
322
+ ],
323
+ "tooltips": {
324
+ "opacity": 90,
325
+ "singleSeries": false,
326
+ "dateDisplayFormat": "%b. %-d, %Y"
327
+ },
328
+ "forestPlot": {
329
+ "startAt": 0,
330
+ "colors": {
331
+ "line": "",
332
+ "shape": ""
333
+ },
334
+ "lineOfNoEffect": {
335
+ "show": true
336
+ },
337
+ "type": "",
338
+ "pooledResult": {
339
+ "diamondHeight": 5,
340
+ "column": ""
341
+ },
342
+ "estimateField": "",
343
+ "estimateRadius": "",
344
+ "shape": "square",
345
+ "rowHeight": 20,
346
+ "description": {
347
+ "show": true,
348
+ "text": "description",
349
+ "location": 0
350
+ },
351
+ "result": {
352
+ "show": true,
353
+ "text": "result",
354
+ "location": 100
355
+ },
356
+ "radius": {
357
+ "min": 2,
358
+ "max": 10,
359
+ "scalingColumn": ""
360
+ },
361
+ "regression": {
362
+ "lower": 0,
363
+ "upper": 0,
364
+ "estimateField": 0
365
+ },
366
+ "leftWidthOffset": 0,
367
+ "rightWidthOffset": 0,
368
+ "showZeroLine": false,
369
+ "leftLabel": "",
370
+ "rightLabel": ""
371
+ },
372
+ "area": {
373
+ "isStacked": false
374
+ },
375
+ "sankey": {
376
+ "title": {
377
+ "defaultColor": "black"
378
+ },
379
+ "iterations": 1,
380
+ "rxValue": 0.9,
381
+ "overallSize": {
382
+ "width": 900,
383
+ "height": 700
384
+ },
385
+ "margin": {
386
+ "margin_y": 25,
387
+ "margin_x": 0
388
+ },
389
+ "nodeSize": {
390
+ "nodeWidth": 26,
391
+ "nodeHeight": 40
392
+ },
393
+ "nodePadding": 55,
394
+ "nodeFontColor": "black",
395
+ "nodeColor": {
396
+ "default": "#ff8500",
397
+ "inactive": "#808080"
398
+ },
399
+ "linkColor": {
400
+ "default": "#ffc900",
401
+ "inactive": "#D3D3D3"
402
+ },
403
+ "opacity": {
404
+ "nodeOpacityDefault": 1,
405
+ "nodeOpacityInactive": 0.1,
406
+ "LinkOpacityDefault": 1,
407
+ "LinkOpacityInactive": 0.1
408
+ },
409
+ "storyNodeFontColor": "#006778",
410
+ "storyNodeText": [],
411
+ "nodeValueStyle": {
412
+ "textBefore": "(",
413
+ "textAfter": ")"
414
+ },
415
+ "data": []
416
+ },
417
+ "fontSize": "medium",
418
+ "brush": {
419
+ "height": 25,
420
+ "active": false
421
+ },
422
+ "isPaletteReversed": false,
423
+ "visualizationType": "Bar",
424
+ "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json",
425
+ "dataFileSourceType": "url",
426
+ "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json",
427
+ "dataDescription": {
428
+ "horizontal": false,
429
+ "series": true,
430
+ "singleRow": false,
431
+ "seriesKey": "vaccination_intent_category",
432
+ "xKey": "week_end",
433
+ "valueKeysTallSupport": ["value"],
434
+ "ignoredKeys": [
435
+ "95_confidence_internal_range",
436
+ "95_confidence_interval_upper",
437
+ "95_confidence_interval_lower",
438
+ "suppression_flag"
439
+ ]
440
+ },
441
+ "version": "4.25.9",
442
+ "dynamicMarginTop": 0,
443
+ "runtimeDataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json",
444
+ "description": "<div class=\"text-left\"><p class=\"fnote\">95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.<br><br> Data last updated on <span data-timestamp=\"NISVaccinationsIntent7b:Data_as_of\"></span> and presented through <span data-timestamp=\"NISVaccinationsIntent7b:Data_Presented_Through\"></span>. <a href=\"https://data.cdc.gov/Vaccinations/Weekly-Respiratory-Virus-Vaccination-Data-Children/5c6r-xi2t\">View this dataset</a> on data.CDC.gov.</p></div>",
445
+ "migrations": {
446
+ "addColorMigration": true
447
+ },
448
+ "data": [
449
+ {
450
+ "week_end": "2024-08-24",
451
+ "pathogen": "Influenza",
452
+ "demographic_group": "Adults",
453
+ "Definitely will get a vaccine": "36.9",
454
+ "Probably or definitely will not get a vaccine": "31.5",
455
+ "Probably will get a vaccine or are unsure": "28.9",
456
+ "Received vaccine": "2.7"
457
+ },
458
+ {
459
+ "week_end": "2024-08-24",
460
+ "pathogen": "RSV",
461
+ "demographic_group": "Adults",
462
+ "Definitely will get a vaccine": "11.9",
463
+ "Probably or definitely will not get a vaccine": "19.8",
464
+ "Probably will get a vaccine or are unsure": "39.5",
465
+ "Received vaccine": "28.8"
466
+ },
467
+ {
468
+ "week_end": "2024-08-31",
469
+ "pathogen": "Influenza",
470
+ "demographic_group": "Adults",
471
+ "Definitely will get a vaccine": "36.4",
472
+ "Probably or definitely will not get a vaccine": "33.0",
473
+ "Probably will get a vaccine or are unsure": "27.5",
474
+ "Received vaccine": "3.1"
475
+ },
476
+ {
477
+ "week_end": "2024-08-31",
478
+ "pathogen": "RSV",
479
+ "demographic_group": "Adults",
480
+ "Definitely will get a vaccine": "10.3",
481
+ "Probably or definitely will not get a vaccine": "20.9",
482
+ "Probably will get a vaccine or are unsure": "39.9",
483
+ "Received vaccine": "28.9"
484
+ },
485
+ {
486
+ "week_end": "2024-09-07",
487
+ "pathogen": "COVID-19",
488
+ "demographic_group": "Adults",
489
+ "Definitely will get a vaccine": "23.9",
490
+ "Probably or definitely will not get a vaccine": "44.4",
491
+ "Probably will get a vaccine or are unsure": "29.7",
492
+ "Received vaccine": "2.0"
493
+ },
494
+ {
495
+ "week_end": "2024-09-07",
496
+ "pathogen": "Influenza",
497
+ "demographic_group": "Adults",
498
+ "Definitely will get a vaccine": "36.7",
499
+ "Probably or definitely will not get a vaccine": "31.8",
500
+ "Probably will get a vaccine or are unsure": "27.0",
501
+ "Received vaccine": "4.5"
502
+ },
503
+ {
504
+ "week_end": "2024-09-07",
505
+ "pathogen": "RSV",
506
+ "demographic_group": "Adults",
507
+ "Definitely will get a vaccine": "12.8",
508
+ "Probably or definitely will not get a vaccine": "17.7",
509
+ "Probably will get a vaccine or are unsure": "40.6",
510
+ "Received vaccine": "28.9"
511
+ },
512
+ {
513
+ "week_end": "2024-09-14",
514
+ "pathogen": "COVID-19",
515
+ "demographic_group": "Adults",
516
+ "Definitely will get a vaccine": "23.1",
517
+ "Probably or definitely will not get a vaccine": "41.7",
518
+ "Probably will get a vaccine or are unsure": "31.8",
519
+ "Received vaccine": "3.4"
520
+ },
521
+ {
522
+ "week_end": "2024-09-14",
523
+ "pathogen": "Influenza",
524
+ "demographic_group": "Adults",
525
+ "Definitely will get a vaccine": "34.9",
526
+ "Probably or definitely will not get a vaccine": "30.5",
527
+ "Probably will get a vaccine or are unsure": "27.9",
528
+ "Received vaccine": "6.6"
529
+ },
530
+ {
531
+ "week_end": "2024-09-14",
532
+ "pathogen": "RSV",
533
+ "demographic_group": "Adults",
534
+ "Definitely will get a vaccine": "12.8",
535
+ "Probably or definitely will not get a vaccine": "20.7",
536
+ "Probably will get a vaccine or are unsure": "37.3",
537
+ "Received vaccine": "29.1"
538
+ },
539
+ {
540
+ "week_end": "2024-09-21",
541
+ "pathogen": "COVID-19",
542
+ "demographic_group": "Adults",
543
+ "Definitely will get a vaccine": "23.3",
544
+ "Probably or definitely will not get a vaccine": "42.5",
545
+ "Probably will get a vaccine or are unsure": "29.3",
546
+ "Received vaccine": "5.0"
547
+ },
548
+ {
549
+ "week_end": "2024-09-21",
550
+ "pathogen": "Influenza",
551
+ "demographic_group": "Adults",
552
+ "Definitely will get a vaccine": "33.1",
553
+ "Probably or definitely will not get a vaccine": "30.9",
554
+ "Probably will get a vaccine or are unsure": "26.5",
555
+ "Received vaccine": "9.5"
556
+ },
557
+ {
558
+ "week_end": "2024-09-21",
559
+ "pathogen": "RSV",
560
+ "demographic_group": "Adults",
561
+ "Definitely will get a vaccine": "15.3",
562
+ "Probably or definitely will not get a vaccine": "21.2",
563
+ "Probably will get a vaccine or are unsure": "33.8",
564
+ "Received vaccine": "29.8"
565
+ },
566
+ {
567
+ "week_end": "2024-09-28",
568
+ "pathogen": "COVID-19",
569
+ "demographic_group": "Adults",
570
+ "Definitely will get a vaccine": "20.9",
571
+ "Probably or definitely will not get a vaccine": "42.7",
572
+ "Probably will get a vaccine or are unsure": "29.9",
573
+ "Received vaccine": "6.5"
574
+ },
575
+ {
576
+ "week_end": "2024-09-28",
577
+ "pathogen": "Influenza",
578
+ "demographic_group": "Adults",
579
+ "Definitely will get a vaccine": "31.1",
580
+ "Probably or definitely will not get a vaccine": "32.5",
581
+ "Probably will get a vaccine or are unsure": "24.9",
582
+ "Received vaccine": "11.6"
583
+ },
584
+ {
585
+ "week_end": "2024-09-28",
586
+ "pathogen": "RSV",
587
+ "demographic_group": "Adults",
588
+ "Definitely will get a vaccine": "13.4",
589
+ "Probably or definitely will not get a vaccine": "19.5",
590
+ "Probably will get a vaccine or are unsure": "37.2",
591
+ "Received vaccine": "29.9"
592
+ },
593
+ {
594
+ "week_end": "2024-10-05",
595
+ "pathogen": "COVID-19",
596
+ "demographic_group": "Children",
597
+ "Definitely will get a vaccine": "17.0",
598
+ "Probably or definitely will not get a vaccine": "48.9",
599
+ "Probably will get a vaccine or are unsure": "30.5",
600
+ "Received vaccine": "3.5"
601
+ },
602
+ {
603
+ "week_end": "2024-10-05",
604
+ "pathogen": "COVID-19",
605
+ "demographic_group": "Adults",
606
+ "Definitely will get a vaccine": "21.3",
607
+ "Probably or definitely will not get a vaccine": "39.2",
608
+ "Probably will get a vaccine or are unsure": "31.6",
609
+ "Received vaccine": "7.9"
610
+ },
611
+ {
612
+ "week_end": "2024-10-05",
613
+ "pathogen": "Influenza",
614
+ "demographic_group": "Adults",
615
+ "Definitely will get a vaccine": "28.7",
616
+ "Probably or definitely will not get a vaccine": "32.0",
617
+ "Probably will get a vaccine or are unsure": "23.2",
618
+ "Received vaccine": "16.1"
619
+ },
620
+ {
621
+ "week_end": "2024-10-05",
622
+ "pathogen": "Influenza",
623
+ "demographic_group": "Children",
624
+ "Definitely will get a vaccine": "32.2",
625
+ "Probably or definitely will not get a vaccine": "30.8",
626
+ "Probably will get a vaccine or are unsure": "19.3",
627
+ "Received vaccine": "17.7"
628
+ },
629
+ {
630
+ "week_end": "2024-10-05",
631
+ "pathogen": "RSV",
632
+ "demographic_group": "Adults",
633
+ "Definitely will get a vaccine": "14.7",
634
+ "Probably or definitely will not get a vaccine": "14.4",
635
+ "Probably will get a vaccine or are unsure": "37.8",
636
+ "Received vaccine": "33.2"
637
+ },
638
+ {
639
+ "week_end": "2024-10-12",
640
+ "pathogen": "COVID-19",
641
+ "demographic_group": "Adults",
642
+ "Definitely will get a vaccine": "19.9",
643
+ "Probably or definitely will not get a vaccine": "41.3",
644
+ "Probably will get a vaccine or are unsure": "29.1",
645
+ "Received vaccine": "9.7"
646
+ },
647
+ {
648
+ "week_end": "2024-10-12",
649
+ "pathogen": "COVID-19",
650
+ "demographic_group": "Children",
651
+ "Definitely will get a vaccine": "14.1",
652
+ "Probably or definitely will not get a vaccine": "47.5",
653
+ "Probably will get a vaccine or are unsure": "34.3",
654
+ "Received vaccine": "4.1"
655
+ },
656
+ {
657
+ "week_end": "2024-10-12",
658
+ "pathogen": "Influenza",
659
+ "demographic_group": "Children",
660
+ "Definitely will get a vaccine": "29.2",
661
+ "Probably or definitely will not get a vaccine": "30.4",
662
+ "Probably will get a vaccine or are unsure": "19.9",
663
+ "Received vaccine": "20.5"
664
+ },
665
+ {
666
+ "week_end": "2024-10-12",
667
+ "pathogen": "Influenza",
668
+ "demographic_group": "Adults",
669
+ "Definitely will get a vaccine": "26.9",
670
+ "Probably or definitely will not get a vaccine": "31.7",
671
+ "Probably will get a vaccine or are unsure": "22.3",
672
+ "Received vaccine": "19.1"
673
+ },
674
+ {
675
+ "week_end": "2024-10-12",
676
+ "pathogen": "RSV",
677
+ "demographic_group": "Adults",
678
+ "Definitely will get a vaccine": "16.0",
679
+ "Probably or definitely will not get a vaccine": "17.3",
680
+ "Probably will get a vaccine or are unsure": "32.8",
681
+ "Received vaccine": "33.9"
682
+ },
683
+ {
684
+ "week_end": "2024-10-19",
685
+ "pathogen": "COVID-19",
686
+ "demographic_group": "Children",
687
+ "Definitely will get a vaccine": "13.7",
688
+ "Probably or definitely will not get a vaccine": "48.8",
689
+ "Probably will get a vaccine or are unsure": "32.1",
690
+ "Received vaccine": "5.4"
691
+ },
692
+ {
693
+ "week_end": "2024-10-19",
694
+ "pathogen": "COVID-19",
695
+ "demographic_group": "Adults",
696
+ "Definitely will get a vaccine": "15.9",
697
+ "Probably or definitely will not get a vaccine": "45.0",
698
+ "Probably will get a vaccine or are unsure": "27.7",
699
+ "Received vaccine": "11.4"
700
+ },
701
+ {
702
+ "week_end": "2024-10-19",
703
+ "pathogen": "Influenza",
704
+ "demographic_group": "Adults",
705
+ "Definitely will get a vaccine": "22.5",
706
+ "Probably or definitely will not get a vaccine": "32.8",
707
+ "Probably will get a vaccine or are unsure": "22.1",
708
+ "Received vaccine": "22.6"
709
+ },
710
+ {
711
+ "week_end": "2024-10-19",
712
+ "pathogen": "Influenza",
713
+ "demographic_group": "Children",
714
+ "Definitely will get a vaccine": "24.2",
715
+ "Probably or definitely will not get a vaccine": "33.7",
716
+ "Probably will get a vaccine or are unsure": "18.5",
717
+ "Received vaccine": "23.6"
718
+ },
719
+ {
720
+ "week_end": "2024-10-19",
721
+ "pathogen": "RSV",
722
+ "demographic_group": "Adults",
723
+ "Definitely will get a vaccine": "9.6",
724
+ "Probably or definitely will not get a vaccine": "21.4",
725
+ "Probably will get a vaccine or are unsure": "33.9",
726
+ "Received vaccine": "35.1"
727
+ },
728
+ {
729
+ "week_end": "2024-10-26",
730
+ "pathogen": "COVID-19",
731
+ "demographic_group": "Children",
732
+ "Definitely will get a vaccine": "13.4",
733
+ "Probably or definitely will not get a vaccine": "50.1",
734
+ "Probably will get a vaccine or are unsure": "30.6",
735
+ "Received vaccine": "5.9"
736
+ },
737
+ {
738
+ "week_end": "2024-10-26",
739
+ "pathogen": "COVID-19",
740
+ "demographic_group": "Adults",
741
+ "Definitely will get a vaccine": "14.2",
742
+ "Probably or definitely will not get a vaccine": "44.3",
743
+ "Probably will get a vaccine or are unsure": "28.9",
744
+ "Received vaccine": "12.7"
745
+ },
746
+ {
747
+ "week_end": "2024-10-26",
748
+ "pathogen": "Influenza",
749
+ "demographic_group": "Children",
750
+ "Definitely will get a vaccine": "25.5",
751
+ "Probably or definitely will not get a vaccine": "30.8",
752
+ "Probably will get a vaccine or are unsure": "17.9",
753
+ "Received vaccine": "25.8"
754
+ },
755
+ {
756
+ "week_end": "2024-10-26",
757
+ "pathogen": "Influenza",
758
+ "demographic_group": "Adults",
759
+ "Definitely will get a vaccine": "19.2",
760
+ "Probably or definitely will not get a vaccine": "31.4",
761
+ "Probably will get a vaccine or are unsure": "23.8",
762
+ "Received vaccine": "25.5"
763
+ },
764
+ {
765
+ "week_end": "2024-10-26",
766
+ "pathogen": "RSV",
767
+ "demographic_group": "Adults",
768
+ "Definitely will get a vaccine": "9.2",
769
+ "Probably or definitely will not get a vaccine": "17.3",
770
+ "Probably will get a vaccine or are unsure": "38.0",
771
+ "Received vaccine": "35.5"
772
+ },
773
+ {
774
+ "week_end": "2024-11-02",
775
+ "pathogen": "COVID-19",
776
+ "demographic_group": "Adults",
777
+ "Definitely will get a vaccine": "14.7",
778
+ "Probably or definitely will not get a vaccine": "42.8",
779
+ "Probably will get a vaccine or are unsure": "27.5",
780
+ "Received vaccine": "14.9"
781
+ },
782
+ {
783
+ "week_end": "2024-11-02",
784
+ "pathogen": "COVID-19",
785
+ "demographic_group": "Children",
786
+ "Definitely will get a vaccine": "12.1",
787
+ "Probably or definitely will not get a vaccine": "47.7",
788
+ "Probably will get a vaccine or are unsure": "32.5",
789
+ "Received vaccine": "7.7"
790
+ },
791
+ {
792
+ "week_end": "2024-11-02",
793
+ "pathogen": "Influenza",
794
+ "demographic_group": "Children",
795
+ "Definitely will get a vaccine": "20.4",
796
+ "Probably or definitely will not get a vaccine": "31.5",
797
+ "Probably will get a vaccine or are unsure": "16.9",
798
+ "Received vaccine": "31.2"
799
+ },
800
+ {
801
+ "week_end": "2024-11-02",
802
+ "pathogen": "Influenza",
803
+ "demographic_group": "Adults",
804
+ "Definitely will get a vaccine": "16.4",
805
+ "Probably or definitely will not get a vaccine": "32.2",
806
+ "Probably will get a vaccine or are unsure": "20.7",
807
+ "Received vaccine": "30.7"
808
+ },
809
+ {
810
+ "week_end": "2024-11-02",
811
+ "pathogen": "RSV",
812
+ "demographic_group": "Adults",
813
+ "Definitely will get a vaccine": "7.2",
814
+ "Probably or definitely will not get a vaccine": "19.3",
815
+ "Probably will get a vaccine or are unsure": "34.2",
816
+ "Received vaccine": "39.3"
817
+ },
818
+ {
819
+ "week_end": "2024-11-09",
820
+ "pathogen": "COVID-19",
821
+ "demographic_group": "Adults",
822
+ "Definitely will get a vaccine": "13.8",
823
+ "Probably or definitely will not get a vaccine": "42.6",
824
+ "Probably will get a vaccine or are unsure": "27.7",
825
+ "Received vaccine": "15.9"
826
+ },
827
+ {
828
+ "week_end": "2024-11-09",
829
+ "pathogen": "COVID-19",
830
+ "demographic_group": "Children",
831
+ "Definitely will get a vaccine": "10.6",
832
+ "Probably or definitely will not get a vaccine": "47.8",
833
+ "Probably will get a vaccine or are unsure": "33.2",
834
+ "Received vaccine": "8.4"
835
+ },
836
+ {
837
+ "week_end": "2024-11-09",
838
+ "pathogen": "Influenza",
839
+ "demographic_group": "Adults",
840
+ "Definitely will get a vaccine": "14.9",
841
+ "Probably or definitely will not get a vaccine": "31.0",
842
+ "Probably will get a vaccine or are unsure": "21.0",
843
+ "Received vaccine": "33.0"
844
+ },
845
+ {
846
+ "week_end": "2024-11-09",
847
+ "pathogen": "Influenza",
848
+ "demographic_group": "Children",
849
+ "Definitely will get a vaccine": "18.0",
850
+ "Probably or definitely will not get a vaccine": "31.5",
851
+ "Probably will get a vaccine or are unsure": "17.8",
852
+ "Received vaccine": "32.7"
853
+ },
854
+ {
855
+ "week_end": "2024-11-09",
856
+ "pathogen": "RSV",
857
+ "demographic_group": "Adults",
858
+ "Definitely will get a vaccine": "7.3",
859
+ "Probably or definitely will not get a vaccine": "20.4",
860
+ "Probably will get a vaccine or are unsure": "32.9",
861
+ "Received vaccine": "39.5"
862
+ },
863
+ {
864
+ "week_end": "2024-11-16",
865
+ "pathogen": "COVID-19",
866
+ "demographic_group": "Children",
867
+ "Definitely will get a vaccine": "11.9",
868
+ "Probably or definitely will not get a vaccine": "54.2",
869
+ "Probably will get a vaccine or are unsure": "25.1",
870
+ "Received vaccine": "8.8"
871
+ },
872
+ {
873
+ "week_end": "2024-11-16",
874
+ "pathogen": "COVID-19",
875
+ "demographic_group": "Adults",
876
+ "Definitely will get a vaccine": "12.1",
877
+ "Probably or definitely will not get a vaccine": "45.3",
878
+ "Probably will get a vaccine or are unsure": "25.9",
879
+ "Received vaccine": "16.7"
880
+ },
881
+ {
882
+ "week_end": "2024-11-16",
883
+ "pathogen": "Influenza",
884
+ "demographic_group": "Adults",
885
+ "Definitely will get a vaccine": "13.4",
886
+ "Probably or definitely will not get a vaccine": "32.6",
887
+ "Probably will get a vaccine or are unsure": "19.5",
888
+ "Received vaccine": "34.5"
889
+ },
890
+ {
891
+ "week_end": "2024-11-16",
892
+ "pathogen": "Influenza",
893
+ "demographic_group": "Children",
894
+ "Definitely will get a vaccine": "16.0",
895
+ "Probably or definitely will not get a vaccine": "34.7",
896
+ "Probably will get a vaccine or are unsure": "14.8",
897
+ "Received vaccine": "34.5"
898
+ },
899
+ {
900
+ "week_end": "2024-11-16",
901
+ "pathogen": "RSV",
902
+ "demographic_group": "Adults",
903
+ "Definitely will get a vaccine": "6.1",
904
+ "Probably or definitely will not get a vaccine": "25.2",
905
+ "Probably will get a vaccine or are unsure": "29.1",
906
+ "Received vaccine": "39.6"
907
+ },
908
+ {
909
+ "week_end": "2024-11-23",
910
+ "pathogen": "COVID-19",
911
+ "demographic_group": "Children",
912
+ "Definitely will get a vaccine": "9.2",
913
+ "Probably or definitely will not get a vaccine": "52.3",
914
+ "Probably will get a vaccine or are unsure": "29.2",
915
+ "Received vaccine": "9.4"
916
+ },
917
+ {
918
+ "week_end": "2024-11-23",
919
+ "pathogen": "COVID-19",
920
+ "demographic_group": "Adults",
921
+ "Definitely will get a vaccine": "11.3",
922
+ "Probably or definitely will not get a vaccine": "45.5",
923
+ "Probably will get a vaccine or are unsure": "25.4",
924
+ "Received vaccine": "17.8"
925
+ },
926
+ {
927
+ "week_end": "2024-11-23",
928
+ "pathogen": "Influenza",
929
+ "demographic_group": "Adults",
930
+ "Definitely will get a vaccine": "11.5",
931
+ "Probably or definitely will not get a vaccine": "33.6",
932
+ "Probably will get a vaccine or are unsure": "18.8",
933
+ "Received vaccine": "36.1"
934
+ },
935
+ {
936
+ "week_end": "2024-11-23",
937
+ "pathogen": "Influenza",
938
+ "demographic_group": "Children",
939
+ "Definitely will get a vaccine": "15.3",
940
+ "Probably or definitely will not get a vaccine": "34.6",
941
+ "Probably will get a vaccine or are unsure": "14.3",
942
+ "Received vaccine": "35.8"
943
+ },
944
+ {
945
+ "week_end": "2024-11-23",
946
+ "pathogen": "RSV",
947
+ "demographic_group": "Adults",
948
+ "Definitely will get a vaccine": "7.2",
949
+ "Probably or definitely will not get a vaccine": "24.0",
950
+ "Probably will get a vaccine or are unsure": "28.3",
951
+ "Received vaccine": "40.5"
952
+ },
953
+ {
954
+ "week_end": "2024-11-30",
955
+ "pathogen": "COVID-19",
956
+ "demographic_group": "Adults",
957
+ "Definitely will get a vaccine": "9.8",
958
+ "Probably or definitely will not get a vaccine": "47.6",
959
+ "Probably will get a vaccine or are unsure": "24.5",
960
+ "Received vaccine": "18.1"
961
+ },
962
+ {
963
+ "week_end": "2024-11-30",
964
+ "pathogen": "COVID-19",
965
+ "demographic_group": "Children",
966
+ "Definitely will get a vaccine": "8.2",
967
+ "Probably or definitely will not get a vaccine": "51.6",
968
+ "Probably will get a vaccine or are unsure": "30.6",
969
+ "Received vaccine": "9.6"
970
+ },
971
+ {
972
+ "week_end": "2024-11-30",
973
+ "pathogen": "Influenza",
974
+ "demographic_group": "Children",
975
+ "Definitely will get a vaccine": "10.2",
976
+ "Probably or definitely will not get a vaccine": "39.0",
977
+ "Probably will get a vaccine or are unsure": "14.1",
978
+ "Received vaccine": "36.7"
979
+ },
980
+ {
981
+ "week_end": "2024-11-30",
982
+ "pathogen": "Influenza",
983
+ "demographic_group": "Adults",
984
+ "Definitely will get a vaccine": "11.3",
985
+ "Probably or definitely will not get a vaccine": "33.4",
986
+ "Probably will get a vaccine or are unsure": "18.6",
987
+ "Received vaccine": "36.7"
988
+ },
989
+ {
990
+ "week_end": "2024-11-30",
991
+ "pathogen": "RSV",
992
+ "demographic_group": "Adults",
993
+ "Definitely will get a vaccine": "8.0",
994
+ "Probably or definitely will not get a vaccine": "16.7",
995
+ "Probably will get a vaccine or are unsure": "33.4",
996
+ "Received vaccine": "41.8"
997
+ },
998
+ {
999
+ "week_end": "2024-12-07",
1000
+ "pathogen": "COVID-19",
1001
+ "demographic_group": "Adults",
1002
+ "Definitely will get a vaccine": "9.7",
1003
+ "Probably or definitely will not get a vaccine": "45.0",
1004
+ "Probably will get a vaccine or are unsure": "26.1",
1005
+ "Received vaccine": "19.1"
1006
+ },
1007
+ {
1008
+ "week_end": "2024-12-07",
1009
+ "pathogen": "COVID-19",
1010
+ "demographic_group": "Children",
1011
+ "Definitely will get a vaccine": "9.4",
1012
+ "Probably or definitely will not get a vaccine": "52.4",
1013
+ "Probably will get a vaccine or are unsure": "28.0",
1014
+ "Received vaccine": "10.1"
1015
+ },
1016
+ {
1017
+ "week_end": "2024-12-07",
1018
+ "pathogen": "Influenza",
1019
+ "demographic_group": "Adults",
1020
+ "Definitely will get a vaccine": "9.5",
1021
+ "Probably or definitely will not get a vaccine": "31.8",
1022
+ "Probably will get a vaccine or are unsure": "19.5",
1023
+ "Received vaccine": "39.2"
1024
+ },
1025
+ {
1026
+ "week_end": "2024-12-07",
1027
+ "pathogen": "Influenza",
1028
+ "demographic_group": "Children",
1029
+ "Definitely will get a vaccine": "9.0",
1030
+ "Probably or definitely will not get a vaccine": "36.5",
1031
+ "Probably will get a vaccine or are unsure": "13.6",
1032
+ "Received vaccine": "40.8"
1033
+ },
1034
+ {
1035
+ "week_end": "2024-12-07",
1036
+ "pathogen": "RSV",
1037
+ "demographic_group": "Adults",
1038
+ "Definitely will get a vaccine": "7.3",
1039
+ "Probably or definitely will not get a vaccine": "24.8",
1040
+ "Probably will get a vaccine or are unsure": "25.0",
1041
+ "Received vaccine": "42.9"
1042
+ },
1043
+ {
1044
+ "week_end": "2024-12-14",
1045
+ "pathogen": "COVID-19",
1046
+ "demographic_group": "Children",
1047
+ "Definitely will get a vaccine": "8.5",
1048
+ "Probably or definitely will not get a vaccine": "53.8",
1049
+ "Probably will get a vaccine or are unsure": "27.4",
1050
+ "Received vaccine": "10.3"
1051
+ },
1052
+ {
1053
+ "week_end": "2024-12-14",
1054
+ "pathogen": "COVID-19",
1055
+ "demographic_group": "Adults",
1056
+ "Definitely will get a vaccine": "9.9",
1057
+ "Probably or definitely will not get a vaccine": "45.1",
1058
+ "Probably will get a vaccine or are unsure": "25.4",
1059
+ "Received vaccine": "19.6"
1060
+ },
1061
+ {
1062
+ "week_end": "2024-12-14",
1063
+ "pathogen": "Influenza",
1064
+ "demographic_group": "Children",
1065
+ "Definitely will get a vaccine": "8.7",
1066
+ "Probably or definitely will not get a vaccine": "35.3",
1067
+ "Probably will get a vaccine or are unsure": "14.5",
1068
+ "Received vaccine": "41.5"
1069
+ },
1070
+ {
1071
+ "week_end": "2024-12-14",
1072
+ "pathogen": "Influenza",
1073
+ "demographic_group": "Adults",
1074
+ "Definitely will get a vaccine": "7.9",
1075
+ "Probably or definitely will not get a vaccine": "33.1",
1076
+ "Probably will get a vaccine or are unsure": "18.6",
1077
+ "Received vaccine": "40.4"
1078
+ },
1079
+ {
1080
+ "week_end": "2024-12-14",
1081
+ "pathogen": "RSV",
1082
+ "demographic_group": "Adults",
1083
+ "Definitely will get a vaccine": "6.9",
1084
+ "Probably or definitely will not get a vaccine": "24.6",
1085
+ "Probably will get a vaccine or are unsure": "25.6",
1086
+ "Received vaccine": "42.9"
1087
+ },
1088
+ {
1089
+ "week_end": "2024-12-21",
1090
+ "pathogen": "COVID-19",
1091
+ "demographic_group": "Children",
1092
+ "Definitely will get a vaccine": "8.2",
1093
+ "Probably or definitely will not get a vaccine": "53.0",
1094
+ "Probably will get a vaccine or are unsure": "28.2",
1095
+ "Received vaccine": "10.6"
1096
+ },
1097
+ {
1098
+ "week_end": "2024-12-21",
1099
+ "pathogen": "COVID-19",
1100
+ "demographic_group": "Adults",
1101
+ "Definitely will get a vaccine": "9.0",
1102
+ "Probably or definitely will not get a vaccine": "46.4",
1103
+ "Probably will get a vaccine or are unsure": "24.5",
1104
+ "Received vaccine": "20.1"
1105
+ },
1106
+ {
1107
+ "week_end": "2024-12-21",
1108
+ "pathogen": "Influenza",
1109
+ "demographic_group": "Children",
1110
+ "Definitely will get a vaccine": "9.0",
1111
+ "Probably or definitely will not get a vaccine": "35.9",
1112
+ "Probably will get a vaccine or are unsure": "13.2",
1113
+ "Received vaccine": "42.0"
1114
+ },
1115
+ {
1116
+ "week_end": "2024-12-21",
1117
+ "pathogen": "Influenza",
1118
+ "demographic_group": "Adults",
1119
+ "Definitely will get a vaccine": "7.6",
1120
+ "Probably or definitely will not get a vaccine": "33.0",
1121
+ "Probably will get a vaccine or are unsure": "18.2",
1122
+ "Received vaccine": "41.2"
1123
+ },
1124
+ {
1125
+ "week_end": "2024-12-21",
1126
+ "pathogen": "RSV",
1127
+ "demographic_group": "Adults",
1128
+ "Definitely will get a vaccine": "9.1",
1129
+ "Probably or definitely will not get a vaccine": "18.8",
1130
+ "Probably will get a vaccine or are unsure": "28.8",
1131
+ "Received vaccine": "43.3"
1132
+ },
1133
+ {
1134
+ "week_end": "2024-12-28",
1135
+ "pathogen": "COVID-19",
1136
+ "demographic_group": "Adults",
1137
+ "Definitely will get a vaccine": "9.3",
1138
+ "Probably or definitely will not get a vaccine": "42.9",
1139
+ "Probably will get a vaccine or are unsure": "27.5",
1140
+ "Received vaccine": "20.2"
1141
+ },
1142
+ {
1143
+ "week_end": "2024-12-28",
1144
+ "pathogen": "COVID-19",
1145
+ "demographic_group": "Children",
1146
+ "Definitely will get a vaccine": "8.6",
1147
+ "Probably or definitely will not get a vaccine": "53.4",
1148
+ "Probably will get a vaccine or are unsure": "27.2",
1149
+ "Received vaccine": "10.8"
1150
+ },
1151
+ {
1152
+ "week_end": "2024-12-28",
1153
+ "pathogen": "Influenza",
1154
+ "demographic_group": "Children",
1155
+ "Definitely will get a vaccine": "6.1",
1156
+ "Probably or definitely will not get a vaccine": "38.8",
1157
+ "Probably will get a vaccine or are unsure": "13.0",
1158
+ "Received vaccine": "42.1"
1159
+ },
1160
+ {
1161
+ "week_end": "2024-12-28",
1162
+ "pathogen": "Influenza",
1163
+ "demographic_group": "Adults",
1164
+ "Definitely will get a vaccine": "6.5",
1165
+ "Probably or definitely will not get a vaccine": "32.2",
1166
+ "Probably will get a vaccine or are unsure": "19.7",
1167
+ "Received vaccine": "41.6"
1168
+ },
1169
+ {
1170
+ "week_end": "2024-12-28",
1171
+ "pathogen": "RSV",
1172
+ "demographic_group": "Adults",
1173
+ "Definitely will get a vaccine": "7.6",
1174
+ "Probably or definitely will not get a vaccine": "16.7",
1175
+ "Probably will get a vaccine or are unsure": "32.4",
1176
+ "Received vaccine": "43.3"
1177
+ },
1178
+ {
1179
+ "week_end": "2025-01-04",
1180
+ "pathogen": "COVID-19",
1181
+ "demographic_group": "Children",
1182
+ "Definitely will get a vaccine": "7.2",
1183
+ "Probably or definitely will not get a vaccine": "49.7",
1184
+ "Probably will get a vaccine or are unsure": "32.0",
1185
+ "Received vaccine": "11.2"
1186
+ },
1187
+ {
1188
+ "week_end": "2025-01-04",
1189
+ "pathogen": "COVID-19",
1190
+ "demographic_group": "Adults",
1191
+ "Definitely will get a vaccine": "10.5",
1192
+ "Probably or definitely will not get a vaccine": "44.1",
1193
+ "Probably will get a vaccine or are unsure": "24.7",
1194
+ "Received vaccine": "20.6"
1195
+ },
1196
+ {
1197
+ "week_end": "2025-01-04",
1198
+ "pathogen": "Influenza",
1199
+ "demographic_group": "Children",
1200
+ "Definitely will get a vaccine": "7.1",
1201
+ "Probably or definitely will not get a vaccine": "36.9",
1202
+ "Probably will get a vaccine or are unsure": "12.6",
1203
+ "Received vaccine": "43.5"
1204
+ },
1205
+ {
1206
+ "week_end": "2025-01-04",
1207
+ "pathogen": "Influenza",
1208
+ "demographic_group": "Adults",
1209
+ "Definitely will get a vaccine": "7.7",
1210
+ "Probably or definitely will not get a vaccine": "32.8",
1211
+ "Probably will get a vaccine or are unsure": "17.9",
1212
+ "Received vaccine": "41.6"
1213
+ },
1214
+ {
1215
+ "week_end": "2025-01-04",
1216
+ "pathogen": "RSV",
1217
+ "demographic_group": "Adults",
1218
+ "Definitely will get a vaccine": "11.0",
1219
+ "Probably or definitely will not get a vaccine": "18.1",
1220
+ "Probably will get a vaccine or are unsure": "26.7",
1221
+ "Received vaccine": "44.2"
1222
+ },
1223
+ {
1224
+ "week_end": "2025-01-11",
1225
+ "pathogen": "COVID-19",
1226
+ "demographic_group": "Adults",
1227
+ "Definitely will get a vaccine": "10.0",
1228
+ "Probably or definitely will not get a vaccine": "44.4",
1229
+ "Probably will get a vaccine or are unsure": "24.5",
1230
+ "Received vaccine": "21.1"
1231
+ },
1232
+ {
1233
+ "week_end": "2025-01-11",
1234
+ "pathogen": "COVID-19",
1235
+ "demographic_group": "Children",
1236
+ "Definitely will get a vaccine": "7.5",
1237
+ "Probably or definitely will not get a vaccine": "52.1",
1238
+ "Probably will get a vaccine or are unsure": "29.0",
1239
+ "Received vaccine": "11.3"
1240
+ },
1241
+ {
1242
+ "week_end": "2025-01-11",
1243
+ "pathogen": "Influenza",
1244
+ "demographic_group": "Adults",
1245
+ "Definitely will get a vaccine": "6.5",
1246
+ "Probably or definitely will not get a vaccine": "34.1",
1247
+ "Probably will get a vaccine or are unsure": "17.0",
1248
+ "Received vaccine": "42.4"
1249
+ },
1250
+ {
1251
+ "week_end": "2025-01-11",
1252
+ "pathogen": "Influenza",
1253
+ "demographic_group": "Children",
1254
+ "Definitely will get a vaccine": "6.7",
1255
+ "Probably or definitely will not get a vaccine": "35.8",
1256
+ "Probably will get a vaccine or are unsure": "13.7",
1257
+ "Received vaccine": "43.7"
1258
+ },
1259
+ {
1260
+ "week_end": "2025-01-11",
1261
+ "pathogen": "RSV",
1262
+ "demographic_group": "Adults",
1263
+ "Definitely will get a vaccine": "5.5",
1264
+ "Probably or definitely will not get a vaccine": "20.7",
1265
+ "Probably will get a vaccine or are unsure": "29.5",
1266
+ "Received vaccine": "44.3"
1267
+ },
1268
+ {
1269
+ "week_end": "2025-01-18",
1270
+ "pathogen": "COVID-19",
1271
+ "demographic_group": "Adults",
1272
+ "Definitely will get a vaccine": "9.2",
1273
+ "Probably or definitely will not get a vaccine": "43.9",
1274
+ "Probably will get a vaccine or are unsure": "25.8",
1275
+ "Received vaccine": "21.1"
1276
+ },
1277
+ {
1278
+ "week_end": "2025-01-18",
1279
+ "pathogen": "COVID-19",
1280
+ "demographic_group": "Children",
1281
+ "Definitely will get a vaccine": "7.7",
1282
+ "Probably or definitely will not get a vaccine": "52.6",
1283
+ "Probably will get a vaccine or are unsure": "28.4",
1284
+ "Received vaccine": "11.4"
1285
+ },
1286
+ {
1287
+ "week_end": "2025-01-18",
1288
+ "pathogen": "Influenza",
1289
+ "demographic_group": "Children",
1290
+ "Definitely will get a vaccine": "5.3",
1291
+ "Probably or definitely will not get a vaccine": "36.9",
1292
+ "Probably will get a vaccine or are unsure": "13.4",
1293
+ "Received vaccine": "44.4"
1294
+ },
1295
+ {
1296
+ "week_end": "2025-01-18",
1297
+ "pathogen": "Influenza",
1298
+ "demographic_group": "Adults",
1299
+ "Definitely will get a vaccine": "5.7",
1300
+ "Probably or definitely will not get a vaccine": "32.8",
1301
+ "Probably will get a vaccine or are unsure": "18.6",
1302
+ "Received vaccine": "42.9"
1303
+ },
1304
+ {
1305
+ "week_end": "2025-01-18",
1306
+ "pathogen": "RSV",
1307
+ "demographic_group": "Adults",
1308
+ "Definitely will get a vaccine": "11.2",
1309
+ "Probably or definitely will not get a vaccine": "17.5",
1310
+ "Probably will get a vaccine or are unsure": "26.9",
1311
+ "Received vaccine": "44.4"
1312
+ },
1313
+ {
1314
+ "week_end": "2025-01-25",
1315
+ "pathogen": "COVID-19",
1316
+ "demographic_group": "Adults",
1317
+ "Definitely will get a vaccine": "9.4",
1318
+ "Probably or definitely will not get a vaccine": "43.8",
1319
+ "Probably will get a vaccine or are unsure": "25.6",
1320
+ "Received vaccine": "21.2"
1321
+ },
1322
+ {
1323
+ "week_end": "2025-01-25",
1324
+ "pathogen": "COVID-19",
1325
+ "demographic_group": "Children",
1326
+ "Definitely will get a vaccine": "7.8",
1327
+ "Probably or definitely will not get a vaccine": "51.0",
1328
+ "Probably will get a vaccine or are unsure": "29.8",
1329
+ "Received vaccine": "11.5"
1330
+ },
1331
+ {
1332
+ "week_end": "2025-01-25",
1333
+ "pathogen": "Influenza",
1334
+ "demographic_group": "Adults",
1335
+ "Definitely will get a vaccine": "5.1",
1336
+ "Probably or definitely will not get a vaccine": "35.7",
1337
+ "Probably will get a vaccine or are unsure": "16.1",
1338
+ "Received vaccine": "43.1"
1339
+ },
1340
+ {
1341
+ "week_end": "2025-01-25",
1342
+ "pathogen": "Influenza",
1343
+ "demographic_group": "Children",
1344
+ "Definitely will get a vaccine": "5.9",
1345
+ "Probably or definitely will not get a vaccine": "36.1",
1346
+ "Probably will get a vaccine or are unsure": "13.4",
1347
+ "Received vaccine": "44.6"
1348
+ },
1349
+ {
1350
+ "week_end": "2025-01-25",
1351
+ "pathogen": "RSV",
1352
+ "demographic_group": "Adults",
1353
+ "Definitely will get a vaccine": "4.8",
1354
+ "Probably or definitely will not get a vaccine": "20.4",
1355
+ "Probably will get a vaccine or are unsure": "30.1",
1356
+ "Received vaccine": "44.7"
1357
+ },
1358
+ {
1359
+ "week_end": "2025-02-01",
1360
+ "pathogen": "COVID-19",
1361
+ "demographic_group": "Children",
1362
+ "Definitely will get a vaccine": "8.2",
1363
+ "Probably or definitely will not get a vaccine": "51.9",
1364
+ "Probably will get a vaccine or are unsure": "28.0",
1365
+ "Received vaccine": "11.9"
1366
+ },
1367
+ {
1368
+ "week_end": "2025-02-01",
1369
+ "pathogen": "COVID-19",
1370
+ "demographic_group": "Adults",
1371
+ "Definitely will get a vaccine": "8.6",
1372
+ "Probably or definitely will not get a vaccine": "43.4",
1373
+ "Probably will get a vaccine or are unsure": "26.4",
1374
+ "Received vaccine": "21.5"
1375
+ },
1376
+ {
1377
+ "week_end": "2025-02-01",
1378
+ "pathogen": "Influenza",
1379
+ "demographic_group": "Children",
1380
+ "Definitely will get a vaccine": "3.9",
1381
+ "Probably or definitely will not get a vaccine": "39.5",
1382
+ "Probably will get a vaccine or are unsure": "10.7",
1383
+ "Received vaccine": "45.9"
1384
+ },
1385
+ {
1386
+ "week_end": "2025-02-01",
1387
+ "pathogen": "Influenza",
1388
+ "demographic_group": "Adults",
1389
+ "Definitely will get a vaccine": "4.6",
1390
+ "Probably or definitely will not get a vaccine": "34.7",
1391
+ "Probably will get a vaccine or are unsure": "16.8",
1392
+ "Received vaccine": "43.9"
1393
+ },
1394
+ {
1395
+ "week_end": "2025-02-01",
1396
+ "pathogen": "RSV",
1397
+ "demographic_group": "Adults",
1398
+ "Definitely will get a vaccine": "5.4",
1399
+ "Probably or definitely will not get a vaccine": "21.8",
1400
+ "Probably will get a vaccine or are unsure": "27.3",
1401
+ "Received vaccine": "45.6"
1402
+ },
1403
+ {
1404
+ "week_end": "2025-02-08",
1405
+ "pathogen": "COVID-19",
1406
+ "demographic_group": "Children",
1407
+ "Definitely will get a vaccine": "6.3",
1408
+ "Probably or definitely will not get a vaccine": "56.4",
1409
+ "Probably will get a vaccine or are unsure": "25.4",
1410
+ "Received vaccine": "11.9"
1411
+ },
1412
+ {
1413
+ "week_end": "2025-02-08",
1414
+ "pathogen": "COVID-19",
1415
+ "demographic_group": "Adults",
1416
+ "Definitely will get a vaccine": "8.3",
1417
+ "Probably or definitely will not get a vaccine": "45.7",
1418
+ "Probably will get a vaccine or are unsure": "24.2",
1419
+ "Received vaccine": "21.8"
1420
+ },
1421
+ {
1422
+ "week_end": "2025-02-08",
1423
+ "pathogen": "Influenza",
1424
+ "demographic_group": "Children",
1425
+ "Definitely will get a vaccine": "3.5",
1426
+ "Probably or definitely will not get a vaccine": "40.8",
1427
+ "Probably will get a vaccine or are unsure": "9.7",
1428
+ "Received vaccine": "46.0"
1429
+ },
1430
+ {
1431
+ "week_end": "2025-02-08",
1432
+ "pathogen": "Influenza",
1433
+ "demographic_group": "Adults",
1434
+ "Definitely will get a vaccine": "5.1",
1435
+ "Probably or definitely will not get a vaccine": "35.7",
1436
+ "Probably will get a vaccine or are unsure": "15.0",
1437
+ "Received vaccine": "44.2"
1438
+ },
1439
+ {
1440
+ "week_end": "2025-02-08",
1441
+ "pathogen": "RSV",
1442
+ "demographic_group": "Adults",
1443
+ "Definitely will get a vaccine": "11.0",
1444
+ "Probably or definitely will not get a vaccine": "20.0",
1445
+ "Probably will get a vaccine or are unsure": "23.3",
1446
+ "Received vaccine": "45.6"
1447
+ },
1448
+ {
1449
+ "week_end": "2025-02-15",
1450
+ "pathogen": "COVID-19",
1451
+ "demographic_group": "Adults",
1452
+ "Definitely will get a vaccine": "8.2",
1453
+ "Probably or definitely will not get a vaccine": "45.7",
1454
+ "Probably will get a vaccine or are unsure": "24.1",
1455
+ "Received vaccine": "22.0"
1456
+ },
1457
+ {
1458
+ "week_end": "2025-02-15",
1459
+ "pathogen": "COVID-19",
1460
+ "demographic_group": "Children",
1461
+ "Definitely will get a vaccine": "7.3",
1462
+ "Probably or definitely will not get a vaccine": "55.1",
1463
+ "Probably will get a vaccine or are unsure": "25.7",
1464
+ "Received vaccine": "11.9"
1465
+ },
1466
+ {
1467
+ "week_end": "2025-02-15",
1468
+ "pathogen": "Influenza",
1469
+ "demographic_group": "Adults",
1470
+ "Definitely will get a vaccine": "4.4",
1471
+ "Probably or definitely will not get a vaccine": "36.0",
1472
+ "Probably will get a vaccine or are unsure": "15.0",
1473
+ "Received vaccine": "44.6"
1474
+ },
1475
+ {
1476
+ "week_end": "2025-02-15",
1477
+ "pathogen": "Influenza",
1478
+ "demographic_group": "Children",
1479
+ "Definitely will get a vaccine": "4.0",
1480
+ "Probably or definitely will not get a vaccine": "41.3",
1481
+ "Probably will get a vaccine or are unsure": "8.6",
1482
+ "Received vaccine": "46.1"
1483
+ },
1484
+ {
1485
+ "week_end": "2025-02-15",
1486
+ "pathogen": "RSV",
1487
+ "demographic_group": "Adults",
1488
+ "Definitely will get a vaccine": "11.9",
1489
+ "Probably or definitely will not get a vaccine": "20.1",
1490
+ "Probably will get a vaccine or are unsure": "21.8",
1491
+ "Received vaccine": "46.2"
1492
+ },
1493
+ {
1494
+ "week_end": "2025-02-22",
1495
+ "pathogen": "COVID-19",
1496
+ "demographic_group": "Adults",
1497
+ "Definitely will get a vaccine": "8.4",
1498
+ "Probably or definitely will not get a vaccine": "43.1",
1499
+ "Probably will get a vaccine or are unsure": "26.4",
1500
+ "Received vaccine": "22.1"
1501
+ },
1502
+ {
1503
+ "week_end": "2025-02-22",
1504
+ "pathogen": "COVID-19",
1505
+ "demographic_group": "Children",
1506
+ "Definitely will get a vaccine": "7.3",
1507
+ "Probably or definitely will not get a vaccine": "54.5",
1508
+ "Probably will get a vaccine or are unsure": "26.4",
1509
+ "Received vaccine": "11.9"
1510
+ },
1511
+ {
1512
+ "week_end": "2025-02-22",
1513
+ "pathogen": "Influenza",
1514
+ "demographic_group": "Adults",
1515
+ "Definitely will get a vaccine": "5.1",
1516
+ "Probably or definitely will not get a vaccine": "34.4",
1517
+ "Probably will get a vaccine or are unsure": "15.7",
1518
+ "Received vaccine": "44.8"
1519
+ },
1520
+ {
1521
+ "week_end": "2025-02-22",
1522
+ "pathogen": "Influenza",
1523
+ "demographic_group": "Children",
1524
+ "Definitely will get a vaccine": "3.8",
1525
+ "Probably or definitely will not get a vaccine": "42.0",
1526
+ "Probably will get a vaccine or are unsure": "8.0",
1527
+ "Received vaccine": "46.3"
1528
+ },
1529
+ {
1530
+ "week_end": "2025-02-22",
1531
+ "pathogen": "RSV",
1532
+ "demographic_group": "Adults",
1533
+ "Definitely will get a vaccine": "7.1",
1534
+ "Probably or definitely will not get a vaccine": "15.7",
1535
+ "Probably will get a vaccine or are unsure": "30.8",
1536
+ "Received vaccine": "46.4"
1537
+ },
1538
+ {
1539
+ "week_end": "2025-03-01",
1540
+ "pathogen": "COVID-19",
1541
+ "demographic_group": "Children",
1542
+ "Definitely will get a vaccine": "6.0",
1543
+ "Probably or definitely will not get a vaccine": "51.8",
1544
+ "Probably will get a vaccine or are unsure": "29.6",
1545
+ "Received vaccine": "12.6"
1546
+ },
1547
+ {
1548
+ "week_end": "2025-03-01",
1549
+ "pathogen": "COVID-19",
1550
+ "demographic_group": "Adults",
1551
+ "Definitely will get a vaccine": "8.7",
1552
+ "Probably or definitely will not get a vaccine": "43.8",
1553
+ "Probably will get a vaccine or are unsure": "25.2",
1554
+ "Received vaccine": "22.3"
1555
+ },
1556
+ {
1557
+ "week_end": "2025-03-01",
1558
+ "pathogen": "Influenza",
1559
+ "demographic_group": "Adults",
1560
+ "Definitely will get a vaccine": "4.7",
1561
+ "Probably or definitely will not get a vaccine": "35.2",
1562
+ "Probably will get a vaccine or are unsure": "14.7",
1563
+ "Received vaccine": "45.4"
1564
+ },
1565
+ {
1566
+ "week_end": "2025-03-01",
1567
+ "pathogen": "Influenza",
1568
+ "demographic_group": "Children",
1569
+ "Definitely will get a vaccine": "3.2",
1570
+ "Probably or definitely will not get a vaccine": "39.1",
1571
+ "Probably will get a vaccine or are unsure": "10.1",
1572
+ "Received vaccine": "47.6"
1573
+ },
1574
+ {
1575
+ "week_end": "2025-03-01",
1576
+ "pathogen": "RSV",
1577
+ "demographic_group": "Adults",
1578
+ "Definitely will get a vaccine": "7.9",
1579
+ "Probably or definitely will not get a vaccine": "21.7",
1580
+ "Probably will get a vaccine or are unsure": "23.4",
1581
+ "Received vaccine": "47.0"
1582
+ },
1583
+ {
1584
+ "week_end": "2025-03-08",
1585
+ "pathogen": "COVID-19",
1586
+ "demographic_group": "Adults",
1587
+ "Definitely will get a vaccine": "8.6",
1588
+ "Probably or definitely will not get a vaccine": "44.3",
1589
+ "Probably will get a vaccine or are unsure": "24.7",
1590
+ "Received vaccine": "22.4"
1591
+ },
1592
+ {
1593
+ "week_end": "2025-03-08",
1594
+ "pathogen": "COVID-19",
1595
+ "demographic_group": "Children",
1596
+ "Definitely will get a vaccine": "6.8",
1597
+ "Probably or definitely will not get a vaccine": "51.0",
1598
+ "Probably will get a vaccine or are unsure": "29.5",
1599
+ "Received vaccine": "12.6"
1600
+ },
1601
+ {
1602
+ "week_end": "2025-03-08",
1603
+ "pathogen": "Influenza",
1604
+ "demographic_group": "Adults",
1605
+ "Definitely will get a vaccine": "3.2",
1606
+ "Probably or definitely will not get a vaccine": "35.5",
1607
+ "Probably will get a vaccine or are unsure": "15.6",
1608
+ "Received vaccine": "45.7"
1609
+ },
1610
+ {
1611
+ "week_end": "2025-03-08",
1612
+ "pathogen": "Influenza",
1613
+ "demographic_group": "Children",
1614
+ "Definitely will get a vaccine": "4.0",
1615
+ "Probably or definitely will not get a vaccine": "40.3",
1616
+ "Probably will get a vaccine or are unsure": "8.0",
1617
+ "Received vaccine": "47.7"
1618
+ },
1619
+ {
1620
+ "week_end": "2025-03-08",
1621
+ "pathogen": "RSV",
1622
+ "demographic_group": "Adults",
1623
+ "Definitely will get a vaccine": "6.3",
1624
+ "Probably or definitely will not get a vaccine": "19.7",
1625
+ "Probably will get a vaccine or are unsure": "26.9",
1626
+ "Received vaccine": "47.1"
1627
+ },
1628
+ {
1629
+ "week_end": "2025-03-15",
1630
+ "pathogen": "COVID-19",
1631
+ "demographic_group": "Adults",
1632
+ "Definitely will get a vaccine": "7.9",
1633
+ "Probably or definitely will not get a vaccine": "43.4",
1634
+ "Probably will get a vaccine or are unsure": "26.3",
1635
+ "Received vaccine": "22.5"
1636
+ },
1637
+ {
1638
+ "week_end": "2025-03-15",
1639
+ "pathogen": "COVID-19",
1640
+ "demographic_group": "Children",
1641
+ "Definitely will get a vaccine": "6.9",
1642
+ "Probably or definitely will not get a vaccine": "51.0",
1643
+ "Probably will get a vaccine or are unsure": "29.5",
1644
+ "Received vaccine": "12.6"
1645
+ },
1646
+ {
1647
+ "week_end": "2025-03-15",
1648
+ "pathogen": "Influenza",
1649
+ "demographic_group": "Adults",
1650
+ "Definitely will get a vaccine": "4.1",
1651
+ "Probably or definitely will not get a vaccine": "35.5",
1652
+ "Probably will get a vaccine or are unsure": "14.6",
1653
+ "Received vaccine": "45.8"
1654
+ },
1655
+ {
1656
+ "week_end": "2025-03-15",
1657
+ "pathogen": "Influenza",
1658
+ "demographic_group": "Children",
1659
+ "Definitely will get a vaccine": "3.4",
1660
+ "Probably or definitely will not get a vaccine": "42.0",
1661
+ "Probably will get a vaccine or are unsure": "6.8",
1662
+ "Received vaccine": "47.7"
1663
+ },
1664
+ {
1665
+ "week_end": "2025-03-15",
1666
+ "pathogen": "RSV",
1667
+ "demographic_group": "Adults",
1668
+ "Definitely will get a vaccine": "4.7",
1669
+ "Probably or definitely will not get a vaccine": "19.0",
1670
+ "Probably will get a vaccine or are unsure": "29.2",
1671
+ "Received vaccine": "47.1"
1672
+ },
1673
+ {
1674
+ "week_end": "2025-03-22",
1675
+ "pathogen": "COVID-19",
1676
+ "demographic_group": "Children",
1677
+ "Definitely will get a vaccine": "6.9",
1678
+ "Probably or definitely will not get a vaccine": "52.2",
1679
+ "Probably will get a vaccine or are unsure": "28.2",
1680
+ "Received vaccine": "12.7"
1681
+ },
1682
+ {
1683
+ "week_end": "2025-03-22",
1684
+ "pathogen": "COVID-19",
1685
+ "demographic_group": "Adults",
1686
+ "Definitely will get a vaccine": "6.9",
1687
+ "Probably or definitely will not get a vaccine": "44.5",
1688
+ "Probably will get a vaccine or are unsure": "26.0",
1689
+ "Received vaccine": "22.6"
1690
+ },
1691
+ {
1692
+ "week_end": "2025-03-22",
1693
+ "pathogen": "Influenza",
1694
+ "demographic_group": "Adults",
1695
+ "Definitely will get a vaccine": "3.0",
1696
+ "Probably or definitely will not get a vaccine": "35.8",
1697
+ "Probably will get a vaccine or are unsure": "15.4",
1698
+ "Received vaccine": "45.8"
1699
+ },
1700
+ {
1701
+ "week_end": "2025-03-22",
1702
+ "pathogen": "Influenza",
1703
+ "demographic_group": "Children",
1704
+ "Definitely will get a vaccine": "2.9",
1705
+ "Probably or definitely will not get a vaccine": "41.1",
1706
+ "Probably will get a vaccine or are unsure": "8.1",
1707
+ "Received vaccine": "47.8"
1708
+ },
1709
+ {
1710
+ "week_end": "2025-03-22",
1711
+ "pathogen": "RSV",
1712
+ "demographic_group": "Adults",
1713
+ "Definitely will get a vaccine": "4.9",
1714
+ "Probably or definitely will not get a vaccine": "20.4",
1715
+ "Probably will get a vaccine or are unsure": "27.6",
1716
+ "Received vaccine": "47.1"
1717
+ },
1718
+ {
1719
+ "week_end": "2025-03-29",
1720
+ "pathogen": "COVID-19",
1721
+ "demographic_group": "Children",
1722
+ "Definitely will get a vaccine": "5.9",
1723
+ "Probably or definitely will not get a vaccine": "53.7",
1724
+ "Probably will get a vaccine or are unsure": "27.7",
1725
+ "Received vaccine": "12.7"
1726
+ },
1727
+ {
1728
+ "week_end": "2025-03-29",
1729
+ "pathogen": "Influenza",
1730
+ "demographic_group": "Children",
1731
+ "Definitely will get a vaccine": "3.1",
1732
+ "Probably or definitely will not get a vaccine": "41.4",
1733
+ "Probably will get a vaccine or are unsure": "7.6",
1734
+ "Received vaccine": "47.9"
1735
+ },
1736
+ {
1737
+ "week_end": "2025-03-29",
1738
+ "pathogen": "COVID-19",
1739
+ "demographic_group": "Adults",
1740
+ "Definitely will get a vaccine": "7.4",
1741
+ "Probably or definitely will not get a vaccine": "45.3",
1742
+ "Probably will get a vaccine or are unsure": "24.6",
1743
+ "Received vaccine": "22.7"
1744
+ },
1745
+ {
1746
+ "week_end": "2025-03-29",
1747
+ "pathogen": "Influenza",
1748
+ "demographic_group": "Adults",
1749
+ "Definitely will get a vaccine": "3.7",
1750
+ "Probably or definitely will not get a vaccine": "36.0",
1751
+ "Probably will get a vaccine or are unsure": "14.5",
1752
+ "Received vaccine": "45.9"
1753
+ },
1754
+ {
1755
+ "week_end": "2025-03-29",
1756
+ "pathogen": "RSV",
1757
+ "demographic_group": "Adults",
1758
+ "Definitely will get a vaccine": "4.9",
1759
+ "Probably or definitely will not get a vaccine": "24.4",
1760
+ "Probably will get a vaccine or are unsure": "23.5",
1761
+ "Received vaccine": "47.1"
1762
+ },
1763
+ {
1764
+ "week_end": "2025-04-05",
1765
+ "pathogen": "COVID-19",
1766
+ "demographic_group": "Children",
1767
+ "Definitely will get a vaccine": "6.6",
1768
+ "Probably or definitely will not get a vaccine": "52.3",
1769
+ "Probably will get a vaccine or are unsure": "28.3",
1770
+ "Received vaccine": "12.9"
1771
+ },
1772
+ {
1773
+ "week_end": "2025-04-05",
1774
+ "pathogen": "COVID-19",
1775
+ "demographic_group": "Adults",
1776
+ "Definitely will get a vaccine": "7.7",
1777
+ "Probably or definitely will not get a vaccine": "44.9",
1778
+ "Probably will get a vaccine or are unsure": "24.5",
1779
+ "Received vaccine": "22.9"
1780
+ },
1781
+ {
1782
+ "week_end": "2025-04-05",
1783
+ "pathogen": "Influenza",
1784
+ "demographic_group": "Children",
1785
+ "Definitely will get a vaccine": "2.3",
1786
+ "Probably or definitely will not get a vaccine": "41.5",
1787
+ "Probably will get a vaccine or are unsure": "7.0",
1788
+ "Received vaccine": "49.1"
1789
+ },
1790
+ {
1791
+ "week_end": "2025-04-05",
1792
+ "pathogen": "Influenza",
1793
+ "demographic_group": "Adults",
1794
+ "Definitely will get a vaccine": "3.5",
1795
+ "Probably or definitely will not get a vaccine": "35.9",
1796
+ "Probably will get a vaccine or are unsure": "14.0",
1797
+ "Received vaccine": "46.7"
1798
+ },
1799
+ {
1800
+ "week_end": "2025-04-05",
1801
+ "pathogen": "RSV",
1802
+ "demographic_group": "Adults",
1803
+ "Definitely will get a vaccine": "7.8",
1804
+ "Probably or definitely will not get a vaccine": "15.5",
1805
+ "Probably will get a vaccine or are unsure": "29.3",
1806
+ "Received vaccine": "47.4"
1807
+ },
1808
+ {
1809
+ "week_end": "2025-04-12",
1810
+ "pathogen": "COVID-19",
1811
+ "demographic_group": "Adults",
1812
+ "Definitely will get a vaccine": "8.0",
1813
+ "Probably or definitely will not get a vaccine": "43.4",
1814
+ "Probably will get a vaccine or are unsure": "25.7",
1815
+ "Received vaccine": "22.9"
1816
+ },
1817
+ {
1818
+ "week_end": "2025-04-12",
1819
+ "pathogen": "COVID-19",
1820
+ "demographic_group": "Children",
1821
+ "Definitely will get a vaccine": "6.8",
1822
+ "Probably or definitely will not get a vaccine": "52.2",
1823
+ "Probably will get a vaccine or are unsure": "28.1",
1824
+ "Received vaccine": "12.9"
1825
+ },
1826
+ {
1827
+ "week_end": "2025-04-12",
1828
+ "pathogen": "Influenza",
1829
+ "demographic_group": "Adults",
1830
+ "Definitely will get a vaccine": "3.1",
1831
+ "Probably or definitely will not get a vaccine": "35.8",
1832
+ "Probably will get a vaccine or are unsure": "14.5",
1833
+ "Received vaccine": "46.7"
1834
+ },
1835
+ {
1836
+ "week_end": "2025-04-12",
1837
+ "pathogen": "Influenza",
1838
+ "demographic_group": "Children",
1839
+ "Definitely will get a vaccine": "3.0",
1840
+ "Probably or definitely will not get a vaccine": "41.5",
1841
+ "Probably will get a vaccine or are unsure": "6.4",
1842
+ "Received vaccine": "49.2"
1843
+ },
1844
+ {
1845
+ "week_end": "2025-04-12",
1846
+ "pathogen": "RSV",
1847
+ "demographic_group": "Adults",
1848
+ "Definitely will get a vaccine": "6.6",
1849
+ "Probably or definitely will not get a vaccine": "19.4",
1850
+ "Probably will get a vaccine or are unsure": "26.5",
1851
+ "Received vaccine": "47.4"
1852
+ },
1853
+ {
1854
+ "week_end": "2025-04-19",
1855
+ "pathogen": "COVID-19",
1856
+ "demographic_group": "Adults",
1857
+ "Definitely will get a vaccine": "8.3",
1858
+ "Probably or definitely will not get a vaccine": "41.8",
1859
+ "Probably will get a vaccine or are unsure": "26.9",
1860
+ "Received vaccine": "22.9"
1861
+ },
1862
+ {
1863
+ "week_end": "2025-04-19",
1864
+ "pathogen": "COVID-19",
1865
+ "demographic_group": "Children",
1866
+ "Definitely will get a vaccine": "6.7",
1867
+ "Probably or definitely will not get a vaccine": "53.7",
1868
+ "Probably will get a vaccine or are unsure": "26.7",
1869
+ "Received vaccine": "12.9"
1870
+ },
1871
+ {
1872
+ "week_end": "2025-04-19",
1873
+ "pathogen": "Influenza",
1874
+ "demographic_group": "Adults",
1875
+ "Definitely will get a vaccine": "2.6",
1876
+ "Probably or definitely will not get a vaccine": "37.0",
1877
+ "Probably will get a vaccine or are unsure": "13.7",
1878
+ "Received vaccine": "46.7"
1879
+ },
1880
+ {
1881
+ "week_end": "2025-04-19",
1882
+ "pathogen": "Influenza",
1883
+ "demographic_group": "Children",
1884
+ "Definitely will get a vaccine": "2.9",
1885
+ "Probably or definitely will not get a vaccine": "41.4",
1886
+ "Probably will get a vaccine or are unsure": "6.5",
1887
+ "Received vaccine": "49.2"
1888
+ },
1889
+ {
1890
+ "week_end": "2025-04-19",
1891
+ "pathogen": "RSV",
1892
+ "demographic_group": "Adults",
1893
+ "Definitely will get a vaccine": "8.8",
1894
+ "Probably or definitely will not get a vaccine": "23.6",
1895
+ "Probably will get a vaccine or are unsure": "20.1",
1896
+ "Received vaccine": "47.4"
1897
+ },
1898
+ {
1899
+ "week_end": "2025-04-26",
1900
+ "pathogen": "COVID-19",
1901
+ "demographic_group": "Children",
1902
+ "Definitely will get a vaccine": "6.7",
1903
+ "Probably or definitely will not get a vaccine": "51.8",
1904
+ "Probably will get a vaccine or are unsure": "28.4",
1905
+ "Received vaccine": "13.0"
1906
+ },
1907
+ {
1908
+ "week_end": "2025-04-26",
1909
+ "pathogen": "Influenza",
1910
+ "demographic_group": "Children",
1911
+ "Definitely will get a vaccine": "2.8",
1912
+ "Probably or definitely will not get a vaccine": "40.1",
1913
+ "Probably will get a vaccine or are unsure": "7.9",
1914
+ "Received vaccine": "49.2"
1915
+ },
1916
+ {
1917
+ "week_end": "2025-04-26",
1918
+ "pathogen": "COVID-19",
1919
+ "demographic_group": "Adults",
1920
+ "Definitely will get a vaccine": "7.0",
1921
+ "Probably or definitely will not get a vaccine": "45.1",
1922
+ "Probably will get a vaccine or are unsure": "25.0",
1923
+ "Received vaccine": "23.0"
1924
+ },
1925
+ {
1926
+ "week_end": "2025-04-26",
1927
+ "pathogen": "Influenza",
1928
+ "demographic_group": "Adults",
1929
+ "Definitely will get a vaccine": "3.0",
1930
+ "Probably or definitely will not get a vaccine": "38.3",
1931
+ "Probably will get a vaccine or are unsure": "12.0",
1932
+ "Received vaccine": "46.7"
1933
+ },
1934
+ {
1935
+ "week_end": "2025-04-26",
1936
+ "pathogen": "RSV",
1937
+ "demographic_group": "Adults",
1938
+ "Definitely will get a vaccine": "8.0",
1939
+ "Probably or definitely will not get a vaccine": "17.4",
1940
+ "Probably will get a vaccine or are unsure": "27.1",
1941
+ "Received vaccine": "47.5"
1942
+ }
1943
+ ]
1944
+ }