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