@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,2646 @@
1
+ {
2
+ "annotations": [],
3
+ "allowLineToBarGraph": "__​undefined__",
4
+ "type": "chart",
5
+ "debugSvg": false,
6
+ "chartMessage": {
7
+ "noData": "No Data Available"
8
+ },
9
+ "title": "",
10
+ "showTitle": true,
11
+ "showDownloadMediaButton": false,
12
+ "theme": "theme-blue",
13
+ "animate": false,
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "false",
17
+ "isLollipopChart": false,
18
+ "lollipopShape": "circle",
19
+ "lollipopColorStyle": "two-tone",
20
+ "visualizationSubType": "regular",
21
+ "barStyle": "flat",
22
+ "roundingStyle": "standard",
23
+ "tipRounding": "top",
24
+ "isResponsiveTicks": false,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showMissingDataLabel": true,
28
+ "showSuppressedSymbol": true,
29
+ "showZeroValueData": true,
30
+ "hideNullValue": true,
31
+ "showZeroValueDataLabel": true,
32
+ "palette": {
33
+ "name": "qualitative_bold",
34
+ "customColors": [
35
+ "#197F38",
36
+ "#FA4E56",
37
+ "#A66EFF",
38
+ "#B28500",
39
+ "#1192E9",
40
+ "#012551",
41
+ "#00a089",
42
+ "#B28500",
43
+ "#000000"
44
+ ],
45
+ "version": "1.0",
46
+ "backups": [
47
+ {
48
+ "name": "qualitative_bold",
49
+ "version": "1.0",
50
+ "isReversed": "__​undefined__"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ "padding": {
56
+ "left": 5,
57
+ "right": 5
58
+ },
59
+ "preliminaryData": [],
60
+ "yAxis": {
61
+ "hideAxis": true,
62
+ "displayNumbersOnBar": false,
63
+ "hideLabel": false,
64
+ "hideTicks": true,
65
+ "size": "40",
66
+ "gridLines": true,
67
+ "enablePadding": true,
68
+ "min": "",
69
+ "max": "",
70
+ "labelColor": "#1c1d1f",
71
+ "tickLabelColor": "#1c1d1f",
72
+ "tickColor": "#1c1d1f",
73
+ "rightHideAxis": true,
74
+ "rightAxisSize": 0,
75
+ "rightLabel": "",
76
+ "rightLabelOffsetSize": 0,
77
+ "rightAxisLabelColor": "#1c1d1f",
78
+ "rightAxisTickLabelColor": "#1c1d1f",
79
+ "rightAxisTickColor": "#1c1d1f",
80
+ "numTicks": "5",
81
+ "axisPadding": 0,
82
+ "scalePadding": "50",
83
+ "tickRotation": 0,
84
+ "anchors": [],
85
+ "shoMissingDataLabel": true,
86
+ "showMissingDataLine": true,
87
+ "categories": [],
88
+ "label": "",
89
+ "inlineLabel": "% of emergency department visits"
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.35,
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-time",
138
+ "showTargetLabel": true,
139
+ "targetLabel": "Target",
140
+ "hideAxis": false,
141
+ "hideLabel": false,
142
+ "hideTicks": false,
143
+ "size": "0",
144
+ "tickRotation": 0,
145
+ "min": "",
146
+ "max": "",
147
+ "labelColor": "#1c1d1f",
148
+ "tickLabelColor": "#1c1d1f",
149
+ "tickColor": "#1c1d1f",
150
+ "numTicks": "6",
151
+ "labelOffset": 0,
152
+ "axisPadding": 0,
153
+ "target": 0,
154
+ "maxTickRotation": "45",
155
+ "padding": "0",
156
+ "showYearsOnce": true,
157
+ "sortByRecentDate": false,
158
+ "brushActive": false,
159
+ "dataKey": "week_end",
160
+ "dateParseFormat": "%Y-%m-%d",
161
+ "dateDisplayFormat": "%b. %Y",
162
+ "label": "",
163
+ "tickWidthMax": 75,
164
+ "axisBBox": 45.86000061035156
165
+ },
166
+ "table": {
167
+ "label": "Data Table",
168
+ "expanded": false,
169
+ "limitHeight": false,
170
+ "height": "",
171
+ "caption": "",
172
+ "showDownloadUrl": false,
173
+ "showDataTableLink": true,
174
+ "showDownloadLinkBelow": true,
175
+ "indexLabel": "Week Ending",
176
+ "download": true,
177
+ "showVertical": true,
178
+ "dateDisplayFormat": "%B %-d, %Y",
179
+ "showMissingDataLabel": true,
180
+ "showSuppressedSymbol": true,
181
+ "collapsible": true,
182
+ "show": true
183
+ },
184
+ "orientation": "vertical",
185
+ "columns": {},
186
+ "legend": {
187
+ "hide": true,
188
+ "behavior": "isolate",
189
+ "axisAlign": true,
190
+ "singleRow": true,
191
+ "colorCode": "",
192
+ "reverseLabelOrder": false,
193
+ "description": "",
194
+ "dynamicLegend": false,
195
+ "dynamicLegendDefaultText": "Show All",
196
+ "dynamicLegendItemLimit": 5,
197
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
198
+ "dynamicLegendChartMessage": "Select Options from the Legend",
199
+ "label": "",
200
+ "lineMode": false,
201
+ "verticalSorted": false,
202
+ "highlightOnHover": false,
203
+ "hideSuppressedLabels": false,
204
+ "hideSuppressionLink": false,
205
+ "seriesHighlight": [],
206
+ "style": "circles",
207
+ "subStyle": "linear blocks",
208
+ "groupBy": "",
209
+ "shape": "circle",
210
+ "tickRotation": "",
211
+ "order": "dataColumn",
212
+ "hideBorder": {
213
+ "side": false,
214
+ "topBottom": true
215
+ },
216
+ "position": "top",
217
+ "orderedValues": [],
218
+ "patterns": {},
219
+ "patternField": "",
220
+ "unified": true
221
+ },
222
+ "smallMultiples": {
223
+ "mode": "by-series",
224
+ "tileColumn": "",
225
+ "tilesPerRowDesktop": 3,
226
+ "tilesPerRowMobile": 2,
227
+ "independentYAxis": false,
228
+ "tileOrder": [],
229
+ "tileOrderType": "asc",
230
+ "tileTitles": {},
231
+ "colorMode": "same",
232
+ "synchronizedTooltips": true
233
+ },
234
+ "exclusions": {
235
+ "active": false,
236
+ "keys": []
237
+ },
238
+ "twoColor": {
239
+ "palette": "monochrome-1",
240
+ "isPaletteReversed": false
241
+ },
242
+ "labels": false,
243
+ "dataFormat": {
244
+ "commas": false,
245
+ "prefix": "",
246
+ "suffix": "",
247
+ "abbreviated": true,
248
+ "bottomSuffix": "",
249
+ "bottomPrefix": "",
250
+ "bottomAbbreviated": false,
251
+ "roundTo": "1"
252
+ },
253
+ "filters": [
254
+ {
255
+ "values": ["Influenza", "RSV", "Combined", "COVID-19"],
256
+ "filterStyle": "tab-simple",
257
+ "columnName": "pathogen",
258
+ "order": "cust",
259
+ "label": "Respiratory Illness",
260
+ "active": "COVID-19",
261
+ "orderedValues": ["COVID-19", "RSV", "Influenza", "Combined"]
262
+ }
263
+ ],
264
+ "confidenceKeys": {},
265
+ "visual": {
266
+ "border": true,
267
+ "accent": true,
268
+ "background": true,
269
+ "verticalHoverLine": true,
270
+ "horizontalHoverLine": false,
271
+ "lineDatapointSymbol": "none",
272
+ "maximumShapeAmount": 7
273
+ },
274
+ "useLogScale": false,
275
+ "filterBehavior": "Filter Change",
276
+ "highlightedBarValues": [],
277
+ "series": [
278
+ {
279
+ "dataKey": "AI/AN, NH",
280
+ "type": "Line",
281
+ "axis": "Left",
282
+ "tooltip": true
283
+ },
284
+ {
285
+ "dataKey": "Asian/NHOPI, NH",
286
+ "type": "Line",
287
+ "axis": "Left",
288
+ "tooltip": true
289
+ },
290
+ {
291
+ "dataKey": "Black, NH",
292
+ "type": "Line",
293
+ "axis": "Left",
294
+ "tooltip": true
295
+ },
296
+ {
297
+ "dataKey": "Hispanic",
298
+ "type": "Line",
299
+ "axis": "Left",
300
+ "tooltip": true
301
+ },
302
+ {
303
+ "dataKey": "Multiple/Other, NH",
304
+ "type": "Line",
305
+ "axis": "Left",
306
+ "tooltip": true
307
+ },
308
+ {
309
+ "dataKey": "White, NH",
310
+ "type": "Line",
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": "",
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": 1,
350
+ "max": 8,
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
+ "width": "auto",
364
+ "lowerCiField": "",
365
+ "upperCiField": ""
366
+ },
367
+ "area": {
368
+ "isStacked": false
369
+ },
370
+ "sankey": {
371
+ "title": {
372
+ "defaultColor": "black"
373
+ },
374
+ "iterations": 1,
375
+ "rxValue": 0.9,
376
+ "overallSize": {
377
+ "width": 900,
378
+ "height": 700
379
+ },
380
+ "margin": {
381
+ "margin_y": 25,
382
+ "margin_x": 0
383
+ },
384
+ "nodeSize": {
385
+ "nodeWidth": 26,
386
+ "nodeHeight": 40
387
+ },
388
+ "nodePadding": 55,
389
+ "nodeFontColor": "black",
390
+ "nodeColor": {
391
+ "default": "#ff8500",
392
+ "inactive": "#808080"
393
+ },
394
+ "linkColor": {
395
+ "default": "#ffc900",
396
+ "inactive": "#D3D3D3"
397
+ },
398
+ "opacity": {
399
+ "nodeOpacityDefault": 1,
400
+ "nodeOpacityInactive": 0.1,
401
+ "LinkOpacityDefault": 1,
402
+ "LinkOpacityInactive": 0.1
403
+ },
404
+ "storyNodeFontColor": "#006778",
405
+ "storyNodeText": [],
406
+ "nodeValueStyle": {
407
+ "textBefore": "(",
408
+ "textAfter": ")"
409
+ },
410
+ "data": []
411
+ },
412
+ "fontSize": "medium",
413
+ "brush": {
414
+ "height": 25,
415
+ "active": false,
416
+ "data": [],
417
+ "pattern_id": "brush_pattern",
418
+ "accent_color": "#ddd"
419
+ },
420
+ "isPaletteReversed": false,
421
+ "suppressedData": [],
422
+ "showChartBrush": false,
423
+ "visualizationType": "Line",
424
+ "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(RaceEth).json",
425
+ "dataFileName": "/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(RaceEth).json",
426
+ "dataFileSourceType": "url",
427
+ "dataDescription": {
428
+ "horizontal": false,
429
+ "series": true,
430
+ "singleRow": false,
431
+ "seriesKey": "demographics_values",
432
+ "xKey": "week_end",
433
+ "valueKeys": ["percent_visits"],
434
+ "ignoredKeys": ["demographics_type"]
435
+ },
436
+ "validated": "4.24.3",
437
+ "runtimeDataUrl": "https://wcms-wp.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(RaceEth).json",
438
+ "dynamicMarginTop": 0,
439
+ "description": "<div class=\"text-left\">NH = non-Hispanic, AI/AN = American Indian/Alaska Native, NHOPI = Native Hawaiian, and Other Pacific Islander<br/><br/>Data last updated on <span data-timestamp=\"EmergencyDepartmentVisitCombined(RaceEth):Data_as_of\"></span> and presented through <span data-timestamp=\"EmergencyDepartmentVisitCombined(RaceEth):Data_Presented_Through\"></span>. <a href=\"https://data.cdc.gov/dataset/023-Respiratory-Virus-Response-NSSP-Emergency-Depa/7xva-uux8\">View this dataset</a> on data.cdc.gov.</div>\n",
440
+ "version": "4.25.9",
441
+ "migrations": {
442
+ "addColorMigration": true
443
+ },
444
+ "data": [
445
+ {
446
+ "week_end": "2024-10-05",
447
+ "**Numeric Value Property**": "percent_visits",
448
+ "pathogen": "Influenza",
449
+ "AI/AN, NH": "0.2",
450
+ "White, NH": "0.1",
451
+ "Black, NH": "0.3",
452
+ "Multiple/Other, NH": "0.2",
453
+ "Hispanic": "0.3",
454
+ "Asian/NHOPI, NH": "0.3"
455
+ },
456
+ {
457
+ "week_end": "2024-10-05",
458
+ "**Numeric Value Property**": "percent_visits",
459
+ "pathogen": "RSV",
460
+ "Hispanic": "0.1",
461
+ "AI/AN, NH": "0.0",
462
+ "Multiple/Other, NH": "0.1",
463
+ "Asian/NHOPI, NH": "0.1",
464
+ "Black, NH": "0.1",
465
+ "White, NH": "0.0"
466
+ },
467
+ {
468
+ "week_end": "2024-10-05",
469
+ "**Numeric Value Property**": "percent_visits",
470
+ "pathogen": "Combined",
471
+ "Asian/NHOPI, NH": "1.2",
472
+ "Black, NH": "1.0",
473
+ "White, NH": "1.2",
474
+ "AI/AN, NH": "1.3",
475
+ "Multiple/Other, NH": "0.9",
476
+ "Hispanic": "1.0"
477
+ },
478
+ {
479
+ "week_end": "2024-10-05",
480
+ "**Numeric Value Property**": "percent_visits",
481
+ "pathogen": "COVID-19",
482
+ "White, NH": "1.0",
483
+ "Multiple/Other, NH": "0.7",
484
+ "AI/AN, NH": "1.1",
485
+ "Asian/NHOPI, NH": "0.9",
486
+ "Hispanic": "0.6",
487
+ "Black, NH": "0.6"
488
+ },
489
+ {
490
+ "week_end": "2024-10-12",
491
+ "**Numeric Value Property**": "percent_visits",
492
+ "pathogen": "Influenza",
493
+ "AI/AN, NH": "0.2",
494
+ "Hispanic": "0.3",
495
+ "White, NH": "0.2",
496
+ "Black, NH": "0.3",
497
+ "Multiple/Other, NH": "0.2",
498
+ "Asian/NHOPI, NH": "0.2"
499
+ },
500
+ {
501
+ "week_end": "2024-10-12",
502
+ "**Numeric Value Property**": "percent_visits",
503
+ "pathogen": "COVID-19",
504
+ "Black, NH": "0.5",
505
+ "Multiple/Other, NH": "0.5",
506
+ "AI/AN, NH": "0.9",
507
+ "Hispanic": "0.5",
508
+ "Asian/NHOPI, NH": "0.7",
509
+ "White, NH": "0.9"
510
+ },
511
+ {
512
+ "week_end": "2024-10-12",
513
+ "**Numeric Value Property**": "percent_visits",
514
+ "pathogen": "Combined",
515
+ "Black, NH": "0.9",
516
+ "White, NH": "1.1",
517
+ "Multiple/Other, NH": "0.8",
518
+ "Asian/NHOPI, NH": "1.0",
519
+ "Hispanic": "1.0",
520
+ "AI/AN, NH": "1.2"
521
+ },
522
+ {
523
+ "week_end": "2024-10-12",
524
+ "**Numeric Value Property**": "percent_visits",
525
+ "pathogen": "RSV",
526
+ "Black, NH": "0.1",
527
+ "Asian/NHOPI, NH": "0.1",
528
+ "AI/AN, NH": "0.1",
529
+ "White, NH": "0.1",
530
+ "Multiple/Other, NH": "0.1",
531
+ "Hispanic": "0.2"
532
+ },
533
+ {
534
+ "week_end": "2024-10-19",
535
+ "**Numeric Value Property**": "percent_visits",
536
+ "pathogen": "RSV",
537
+ "Multiple/Other, NH": "0.1",
538
+ "Black, NH": "0.2",
539
+ "Asian/NHOPI, NH": "0.1",
540
+ "White, NH": "0.1",
541
+ "Hispanic": "0.2",
542
+ "AI/AN, NH": "0.0"
543
+ },
544
+ {
545
+ "week_end": "2024-10-19",
546
+ "**Numeric Value Property**": "percent_visits",
547
+ "pathogen": "Influenza",
548
+ "Hispanic": "0.4",
549
+ "Multiple/Other, NH": "0.2",
550
+ "Black, NH": "0.3",
551
+ "White, NH": "0.2",
552
+ "Asian/NHOPI, NH": "0.3",
553
+ "AI/AN, NH": "0.3"
554
+ },
555
+ {
556
+ "week_end": "2024-10-19",
557
+ "**Numeric Value Property**": "percent_visits",
558
+ "pathogen": "Combined",
559
+ "Multiple/Other, NH": "0.8",
560
+ "AI/AN, NH": "1.0",
561
+ "White, NH": "1.0",
562
+ "Black, NH": "0.8",
563
+ "Hispanic": "1.0",
564
+ "Asian/NHOPI, NH": "1.0"
565
+ },
566
+ {
567
+ "week_end": "2024-10-19",
568
+ "**Numeric Value Property**": "percent_visits",
569
+ "pathogen": "COVID-19",
570
+ "Hispanic": "0.4",
571
+ "Black, NH": "0.4",
572
+ "Multiple/Other, NH": "0.4",
573
+ "AI/AN, NH": "0.7",
574
+ "White, NH": "0.8",
575
+ "Asian/NHOPI, NH": "0.6"
576
+ },
577
+ {
578
+ "week_end": "2024-10-26",
579
+ "**Numeric Value Property**": "percent_visits",
580
+ "pathogen": "Influenza",
581
+ "AI/AN, NH": "0.5",
582
+ "White, NH": "0.2",
583
+ "Hispanic": "0.4",
584
+ "Asian/NHOPI, NH": "0.4",
585
+ "Black, NH": "0.4",
586
+ "Multiple/Other, NH": "0.3"
587
+ },
588
+ {
589
+ "week_end": "2024-10-26",
590
+ "**Numeric Value Property**": "percent_visits",
591
+ "pathogen": "Combined",
592
+ "Hispanic": "1.1",
593
+ "Asian/NHOPI, NH": "1.1",
594
+ "Black, NH": "1.0",
595
+ "Multiple/Other, NH": "0.8",
596
+ "White, NH": "1.0",
597
+ "AI/AN, NH": "1.3"
598
+ },
599
+ {
600
+ "week_end": "2024-10-26",
601
+ "**Numeric Value Property**": "percent_visits",
602
+ "pathogen": "RSV",
603
+ "Hispanic": "0.2",
604
+ "Asian/NHOPI, NH": "0.1",
605
+ "Black, NH": "0.2",
606
+ "Multiple/Other, NH": "0.2",
607
+ "AI/AN, NH": "0.1",
608
+ "White, NH": "0.1"
609
+ },
610
+ {
611
+ "week_end": "2024-10-26",
612
+ "**Numeric Value Property**": "percent_visits",
613
+ "pathogen": "COVID-19",
614
+ "AI/AN, NH": "0.8",
615
+ "Hispanic": "0.4",
616
+ "Multiple/Other, NH": "0.4",
617
+ "Black, NH": "0.4",
618
+ "Asian/NHOPI, NH": "0.5",
619
+ "White, NH": "0.7"
620
+ },
621
+ {
622
+ "week_end": "2024-11-02",
623
+ "**Numeric Value Property**": "percent_visits",
624
+ "pathogen": "Combined",
625
+ "White, NH": "1.0",
626
+ "Black, NH": "1.1",
627
+ "Asian/NHOPI, NH": "1.1",
628
+ "Hispanic": "1.3",
629
+ "Multiple/Other, NH": "0.9",
630
+ "AI/AN, NH": "1.3"
631
+ },
632
+ {
633
+ "week_end": "2024-11-02",
634
+ "**Numeric Value Property**": "percent_visits",
635
+ "pathogen": "RSV",
636
+ "White, NH": "0.1",
637
+ "Hispanic": "0.3",
638
+ "AI/AN, NH": "0.1",
639
+ "Black, NH": "0.3",
640
+ "Multiple/Other, NH": "0.2",
641
+ "Asian/NHOPI, NH": "0.2"
642
+ },
643
+ {
644
+ "week_end": "2024-11-02",
645
+ "**Numeric Value Property**": "percent_visits",
646
+ "pathogen": "Influenza",
647
+ "Asian/NHOPI, NH": "0.4",
648
+ "AI/AN, NH": "0.5",
649
+ "Multiple/Other, NH": "0.3",
650
+ "White, NH": "0.2",
651
+ "Hispanic": "0.5",
652
+ "Black, NH": "0.4"
653
+ },
654
+ {
655
+ "week_end": "2024-11-02",
656
+ "**Numeric Value Property**": "percent_visits",
657
+ "pathogen": "COVID-19",
658
+ "AI/AN, NH": "0.7",
659
+ "Multiple/Other, NH": "0.4",
660
+ "Asian/NHOPI, NH": "0.5",
661
+ "White, NH": "0.7",
662
+ "Hispanic": "0.4",
663
+ "Black, NH": "0.4"
664
+ },
665
+ {
666
+ "week_end": "2024-11-09",
667
+ "**Numeric Value Property**": "percent_visits",
668
+ "pathogen": "Influenza",
669
+ "AI/AN, NH": "0.5",
670
+ "Black, NH": "0.6",
671
+ "White, NH": "0.3",
672
+ "Multiple/Other, NH": "0.4",
673
+ "Asian/NHOPI, NH": "0.5",
674
+ "Hispanic": "0.7"
675
+ },
676
+ {
677
+ "week_end": "2024-11-09",
678
+ "**Numeric Value Property**": "percent_visits",
679
+ "pathogen": "RSV",
680
+ "AI/AN, NH": "0.1",
681
+ "White, NH": "0.2",
682
+ "Multiple/Other, NH": "0.3",
683
+ "Asian/NHOPI, NH": "0.2",
684
+ "Black, NH": "0.4",
685
+ "Hispanic": "0.5"
686
+ },
687
+ {
688
+ "week_end": "2024-11-09",
689
+ "**Numeric Value Property**": "percent_visits",
690
+ "pathogen": "COVID-19",
691
+ "Black, NH": "0.4",
692
+ "AI/AN, NH": "0.8",
693
+ "Asian/NHOPI, NH": "0.5",
694
+ "White, NH": "0.6",
695
+ "Multiple/Other, NH": "0.4",
696
+ "Hispanic": "0.4"
697
+ },
698
+ {
699
+ "week_end": "2024-11-09",
700
+ "**Numeric Value Property**": "percent_visits",
701
+ "pathogen": "Combined",
702
+ "Multiple/Other, NH": "1.0",
703
+ "White, NH": "1.1",
704
+ "Hispanic": "1.5",
705
+ "Black, NH": "1.3",
706
+ "Asian/NHOPI, NH": "1.3",
707
+ "AI/AN, NH": "1.4"
708
+ },
709
+ {
710
+ "week_end": "2024-11-16",
711
+ "**Numeric Value Property**": "percent_visits",
712
+ "pathogen": "Combined",
713
+ "Multiple/Other, NH": "1.2",
714
+ "AI/AN, NH": "1.8",
715
+ "Hispanic": "1.9",
716
+ "Black, NH": "1.5",
717
+ "White, NH": "1.1",
718
+ "Asian/NHOPI, NH": "1.5"
719
+ },
720
+ {
721
+ "week_end": "2024-11-16",
722
+ "**Numeric Value Property**": "percent_visits",
723
+ "pathogen": "Influenza",
724
+ "Asian/NHOPI, NH": "0.6",
725
+ "White, NH": "0.3",
726
+ "AI/AN, NH": "0.7",
727
+ "Multiple/Other, NH": "0.5",
728
+ "Black, NH": "0.6",
729
+ "Hispanic": "0.8"
730
+ },
731
+ {
732
+ "week_end": "2024-11-16",
733
+ "**Numeric Value Property**": "percent_visits",
734
+ "pathogen": "COVID-19",
735
+ "Black, NH": "0.3",
736
+ "Asian/NHOPI, NH": "0.5",
737
+ "Hispanic": "0.4",
738
+ "Multiple/Other, NH": "0.4",
739
+ "White, NH": "0.6",
740
+ "AI/AN, NH": "0.9"
741
+ },
742
+ {
743
+ "week_end": "2024-11-16",
744
+ "**Numeric Value Property**": "percent_visits",
745
+ "pathogen": "RSV",
746
+ "Asian/NHOPI, NH": "0.4",
747
+ "AI/AN, NH": "0.2",
748
+ "Multiple/Other, NH": "0.4",
749
+ "White, NH": "0.2",
750
+ "Hispanic": "0.6",
751
+ "Black, NH": "0.5"
752
+ },
753
+ {
754
+ "week_end": "2024-11-23",
755
+ "**Numeric Value Property**": "percent_visits",
756
+ "pathogen": "Combined",
757
+ "Hispanic": "2.2",
758
+ "Multiple/Other, NH": "1.5",
759
+ "White, NH": "1.3",
760
+ "Black, NH": "1.7",
761
+ "AI/AN, NH": "2.2",
762
+ "Asian/NHOPI, NH": "1.6"
763
+ },
764
+ {
765
+ "week_end": "2024-11-23",
766
+ "**Numeric Value Property**": "percent_visits",
767
+ "pathogen": "RSV",
768
+ "Black, NH": "0.6",
769
+ "White, NH": "0.3",
770
+ "AI/AN, NH": "0.3",
771
+ "Hispanic": "0.8",
772
+ "Multiple/Other, NH": "0.5",
773
+ "Asian/NHOPI, NH": "0.5"
774
+ },
775
+ {
776
+ "week_end": "2024-11-23",
777
+ "**Numeric Value Property**": "percent_visits",
778
+ "pathogen": "Influenza",
779
+ "White, NH": "0.4",
780
+ "Multiple/Other, NH": "0.7",
781
+ "AI/AN, NH": "1.1",
782
+ "Asian/NHOPI, NH": "0.6",
783
+ "Hispanic": "1.1",
784
+ "Black, NH": "0.8"
785
+ },
786
+ {
787
+ "week_end": "2024-11-23",
788
+ "**Numeric Value Property**": "percent_visits",
789
+ "pathogen": "COVID-19",
790
+ "Asian/NHOPI, NH": "0.5",
791
+ "Black, NH": "0.4",
792
+ "White, NH": "0.6",
793
+ "Multiple/Other, NH": "0.4",
794
+ "Hispanic": "0.4",
795
+ "AI/AN, NH": "0.8"
796
+ },
797
+ {
798
+ "week_end": "2024-11-30",
799
+ "**Numeric Value Property**": "percent_visits",
800
+ "pathogen": "Combined",
801
+ "Asian/NHOPI, NH": "2.1",
802
+ "White, NH": "1.7",
803
+ "Hispanic": "3.0",
804
+ "Black, NH": "2.2",
805
+ "AI/AN, NH": "2.7",
806
+ "Multiple/Other, NH": "2.1"
807
+ },
808
+ {
809
+ "week_end": "2024-11-30",
810
+ "**Numeric Value Property**": "percent_visits",
811
+ "pathogen": "RSV",
812
+ "Black, NH": "0.8",
813
+ "Asian/NHOPI, NH": "0.6",
814
+ "AI/AN, NH": "0.4",
815
+ "White, NH": "0.4",
816
+ "Hispanic": "1.0",
817
+ "Multiple/Other, NH": "0.7"
818
+ },
819
+ {
820
+ "week_end": "2024-11-30",
821
+ "**Numeric Value Property**": "percent_visits",
822
+ "pathogen": "COVID-19",
823
+ "Asian/NHOPI, NH": "0.5",
824
+ "Multiple/Other, NH": "0.4",
825
+ "White, NH": "0.7",
826
+ "Black, NH": "0.4",
827
+ "Hispanic": "0.5",
828
+ "AI/AN, NH": "0.9"
829
+ },
830
+ {
831
+ "week_end": "2024-11-30",
832
+ "**Numeric Value Property**": "percent_visits",
833
+ "pathogen": "Influenza",
834
+ "Hispanic": "1.6",
835
+ "Multiple/Other, NH": "1.0",
836
+ "Black, NH": "1.0",
837
+ "AI/AN, NH": "1.5",
838
+ "White, NH": "0.6",
839
+ "Asian/NHOPI, NH": "1.0"
840
+ },
841
+ {
842
+ "week_end": "2024-12-07",
843
+ "**Numeric Value Property**": "percent_visits",
844
+ "pathogen": "Influenza",
845
+ "Black, NH": "1.2",
846
+ "Multiple/Other, NH": "1.2",
847
+ "Asian/NHOPI, NH": "1.5",
848
+ "Hispanic": "1.7",
849
+ "White, NH": "0.8",
850
+ "AI/AN, NH": "1.6"
851
+ },
852
+ {
853
+ "week_end": "2024-12-07",
854
+ "**Numeric Value Property**": "percent_visits",
855
+ "pathogen": "RSV",
856
+ "Hispanic": "1.0",
857
+ "Multiple/Other, NH": "0.7",
858
+ "White, NH": "0.5",
859
+ "Black, NH": "0.8",
860
+ "Asian/NHOPI, NH": "0.6",
861
+ "AI/AN, NH": "0.4"
862
+ },
863
+ {
864
+ "week_end": "2024-12-07",
865
+ "**Numeric Value Property**": "percent_visits",
866
+ "pathogen": "COVID-19",
867
+ "Black, NH": "0.5",
868
+ "Hispanic": "0.5",
869
+ "AI/AN, NH": "0.9",
870
+ "White, NH": "0.8",
871
+ "Multiple/Other, NH": "0.5",
872
+ "Asian/NHOPI, NH": "0.6"
873
+ },
874
+ {
875
+ "week_end": "2024-12-07",
876
+ "**Numeric Value Property**": "percent_visits",
877
+ "pathogen": "Combined",
878
+ "Black, NH": "2.5",
879
+ "Hispanic": "3.2",
880
+ "White, NH": "2.0",
881
+ "AI/AN, NH": "2.9",
882
+ "Multiple/Other, NH": "2.5",
883
+ "Asian/NHOPI, NH": "2.6"
884
+ },
885
+ {
886
+ "week_end": "2024-12-14",
887
+ "**Numeric Value Property**": "percent_visits",
888
+ "pathogen": "COVID-19",
889
+ "Black, NH": "0.6",
890
+ "Asian/NHOPI, NH": "0.6",
891
+ "Multiple/Other, NH": "0.6",
892
+ "White, NH": "0.9",
893
+ "AI/AN, NH": "0.8",
894
+ "Hispanic": "0.5"
895
+ },
896
+ {
897
+ "week_end": "2024-12-14",
898
+ "**Numeric Value Property**": "percent_visits",
899
+ "pathogen": "Combined",
900
+ "White, NH": "2.7",
901
+ "Multiple/Other, NH": "3.4",
902
+ "Black, NH": "3.5",
903
+ "Hispanic": "4.4",
904
+ "Asian/NHOPI, NH": "3.5",
905
+ "AI/AN, NH": "3.7"
906
+ },
907
+ {
908
+ "week_end": "2024-12-14",
909
+ "**Numeric Value Property**": "percent_visits",
910
+ "pathogen": "Influenza",
911
+ "Black, NH": "2.2",
912
+ "White, NH": "1.3",
913
+ "AI/AN, NH": "2.4",
914
+ "Asian/NHOPI, NH": "2.1",
915
+ "Multiple/Other, NH": "2.0",
916
+ "Hispanic": "2.8"
917
+ },
918
+ {
919
+ "week_end": "2024-12-14",
920
+ "**Numeric Value Property**": "percent_visits",
921
+ "pathogen": "RSV",
922
+ "Hispanic": "1.1",
923
+ "Asian/NHOPI, NH": "0.8",
924
+ "Black, NH": "0.8",
925
+ "AI/AN, NH": "0.5",
926
+ "White, NH": "0.6",
927
+ "Multiple/Other, NH": "0.8"
928
+ },
929
+ {
930
+ "week_end": "2024-12-21",
931
+ "**Numeric Value Property**": "percent_visits",
932
+ "pathogen": "Combined",
933
+ "White, NH": "4.3",
934
+ "AI/AN, NH": "5.7",
935
+ "Black, NH": "5.4",
936
+ "Asian/NHOPI, NH": "5.4",
937
+ "Hispanic": "6.8",
938
+ "Multiple/Other, NH": "5.3"
939
+ },
940
+ {
941
+ "week_end": "2024-12-21",
942
+ "**Numeric Value Property**": "percent_visits",
943
+ "pathogen": "Influenza",
944
+ "AI/AN, NH": "4.3",
945
+ "Black, NH": "3.8",
946
+ "Multiple/Other, NH": "3.6",
947
+ "Asian/NHOPI, NH": "3.8",
948
+ "White, NH": "2.4",
949
+ "Hispanic": "4.9"
950
+ },
951
+ {
952
+ "week_end": "2024-12-21",
953
+ "**Numeric Value Property**": "percent_visits",
954
+ "pathogen": "COVID-19",
955
+ "AI/AN, NH": "0.9",
956
+ "Hispanic": "0.7",
957
+ "Black, NH": "0.7",
958
+ "White, NH": "1.2",
959
+ "Multiple/Other, NH": "0.7",
960
+ "Asian/NHOPI, NH": "0.7"
961
+ },
962
+ {
963
+ "week_end": "2024-12-21",
964
+ "**Numeric Value Property**": "percent_visits",
965
+ "pathogen": "RSV",
966
+ "Black, NH": "0.9",
967
+ "AI/AN, NH": "0.7",
968
+ "White, NH": "0.8",
969
+ "Asian/NHOPI, NH": "1.0",
970
+ "Multiple/Other, NH": "1.1",
971
+ "Hispanic": "1.2"
972
+ },
973
+ {
974
+ "week_end": "2024-12-28",
975
+ "**Numeric Value Property**": "percent_visits",
976
+ "pathogen": "Combined",
977
+ "AI/AN, NH": "8.2",
978
+ "Black, NH": "8.0",
979
+ "Asian/NHOPI, NH": "8.3",
980
+ "Hispanic": "10.0",
981
+ "Multiple/Other, NH": "7.8",
982
+ "White, NH": "6.8"
983
+ },
984
+ {
985
+ "week_end": "2024-12-28",
986
+ "**Numeric Value Property**": "percent_visits",
987
+ "pathogen": "RSV",
988
+ "Multiple/Other, NH": "1.2",
989
+ "AI/AN, NH": "1.0",
990
+ "Asian/NHOPI, NH": "1.2",
991
+ "White, NH": "1.0",
992
+ "Hispanic": "1.5",
993
+ "Black, NH": "1.0"
994
+ },
995
+ {
996
+ "week_end": "2024-12-28",
997
+ "**Numeric Value Property**": "percent_visits",
998
+ "pathogen": "Influenza",
999
+ "AI/AN, NH": "6.3",
1000
+ "Hispanic": "7.8",
1001
+ "Asian/NHOPI, NH": "6.4",
1002
+ "Black, NH": "6.2",
1003
+ "White, NH": "4.3",
1004
+ "Multiple/Other, NH": "5.8"
1005
+ },
1006
+ {
1007
+ "week_end": "2024-12-28",
1008
+ "**Numeric Value Property**": "percent_visits",
1009
+ "pathogen": "COVID-19",
1010
+ "Hispanic": "0.9",
1011
+ "Asian/NHOPI, NH": "0.9",
1012
+ "Multiple/Other, NH": "0.9",
1013
+ "AI/AN, NH": "1.1",
1014
+ "White, NH": "1.6",
1015
+ "Black, NH": "1.0"
1016
+ },
1017
+ {
1018
+ "week_end": "2025-01-04",
1019
+ "**Numeric Value Property**": "percent_visits",
1020
+ "pathogen": "Influenza",
1021
+ "Asian/NHOPI, NH": "6.5",
1022
+ "AI/AN, NH": "6.0",
1023
+ "Multiple/Other, NH": "5.3",
1024
+ "Black, NH": "5.3",
1025
+ "White, NH": "4.1",
1026
+ "Hispanic": "7.1"
1027
+ },
1028
+ {
1029
+ "week_end": "2025-01-04",
1030
+ "**Numeric Value Property**": "percent_visits",
1031
+ "pathogen": "Combined",
1032
+ "Asian/NHOPI, NH": "8.5",
1033
+ "AI/AN, NH": "7.9",
1034
+ "Multiple/Other, NH": "7.4",
1035
+ "Black, NH": "7.1",
1036
+ "Hispanic": "9.3",
1037
+ "White, NH": "6.7"
1038
+ },
1039
+ {
1040
+ "week_end": "2025-01-04",
1041
+ "**Numeric Value Property**": "percent_visits",
1042
+ "pathogen": "COVID-19",
1043
+ "Black, NH": "1.1",
1044
+ "Multiple/Other, NH": "1.0",
1045
+ "White, NH": "1.7",
1046
+ "Asian/NHOPI, NH": "1.0",
1047
+ "AI/AN, NH": "1.1",
1048
+ "Hispanic": "0.9"
1049
+ },
1050
+ {
1051
+ "week_end": "2025-01-04",
1052
+ "**Numeric Value Property**": "percent_visits",
1053
+ "pathogen": "RSV",
1054
+ "AI/AN, NH": "0.9",
1055
+ "Black, NH": "0.9",
1056
+ "White, NH": "1.0",
1057
+ "Hispanic": "1.4",
1058
+ "Multiple/Other, NH": "1.2",
1059
+ "Asian/NHOPI, NH": "1.1"
1060
+ },
1061
+ {
1062
+ "week_end": "2025-01-11",
1063
+ "**Numeric Value Property**": "percent_visits",
1064
+ "pathogen": "Combined",
1065
+ "White, NH": "5.5",
1066
+ "Black, NH": "6.4",
1067
+ "Asian/NHOPI, NH": "7.5",
1068
+ "Hispanic": "7.9",
1069
+ "Multiple/Other, NH": "6.4",
1070
+ "AI/AN, NH": "6.4"
1071
+ },
1072
+ {
1073
+ "week_end": "2025-01-11",
1074
+ "**Numeric Value Property**": "percent_visits",
1075
+ "pathogen": "COVID-19",
1076
+ "AI/AN, NH": "1.0",
1077
+ "Hispanic": "0.8",
1078
+ "White, NH": "1.4",
1079
+ "Black, NH": "1.0",
1080
+ "Asian/NHOPI, NH": "1.0",
1081
+ "Multiple/Other, NH": "0.8"
1082
+ },
1083
+ {
1084
+ "week_end": "2025-01-11",
1085
+ "**Numeric Value Property**": "percent_visits",
1086
+ "pathogen": "Influenza",
1087
+ "Black, NH": "4.9",
1088
+ "Asian/NHOPI, NH": "5.8",
1089
+ "White, NH": "3.5",
1090
+ "Hispanic": "6.2",
1091
+ "Multiple/Other, NH": "4.8",
1092
+ "AI/AN, NH": "4.8"
1093
+ },
1094
+ {
1095
+ "week_end": "2025-01-11",
1096
+ "**Numeric Value Property**": "percent_visits",
1097
+ "pathogen": "RSV",
1098
+ "AI/AN, NH": "0.7",
1099
+ "Multiple/Other, NH": "0.8",
1100
+ "White, NH": "0.8",
1101
+ "Hispanic": "1.0",
1102
+ "Black, NH": "0.6",
1103
+ "Asian/NHOPI, NH": "0.9"
1104
+ },
1105
+ {
1106
+ "week_end": "2025-01-18",
1107
+ "**Numeric Value Property**": "percent_visits",
1108
+ "pathogen": "RSV",
1109
+ "Multiple/Other, NH": "0.7",
1110
+ "White, NH": "0.6",
1111
+ "Black, NH": "0.5",
1112
+ "Asian/NHOPI, NH": "0.7",
1113
+ "AI/AN, NH": "0.9",
1114
+ "Hispanic": "0.8"
1115
+ },
1116
+ {
1117
+ "week_end": "2025-01-18",
1118
+ "**Numeric Value Property**": "percent_visits",
1119
+ "pathogen": "COVID-19",
1120
+ "AI/AN, NH": "0.8",
1121
+ "Hispanic": "0.7",
1122
+ "Multiple/Other, NH": "0.8",
1123
+ "White, NH": "1.1",
1124
+ "Asian/NHOPI, NH": "0.8",
1125
+ "Black, NH": "0.9"
1126
+ },
1127
+ {
1128
+ "week_end": "2025-01-18",
1129
+ "**Numeric Value Property**": "percent_visits",
1130
+ "pathogen": "Combined",
1131
+ "Multiple/Other, NH": "7.3",
1132
+ "Asian/NHOPI, NH": "8.0",
1133
+ "White, NH": "5.9",
1134
+ "Hispanic": "8.9",
1135
+ "AI/AN, NH": "7.3",
1136
+ "Black, NH": "7.8"
1137
+ },
1138
+ {
1139
+ "week_end": "2025-01-18",
1140
+ "**Numeric Value Property**": "percent_visits",
1141
+ "pathogen": "Influenza",
1142
+ "White, NH": "4.2",
1143
+ "Black, NH": "6.6",
1144
+ "Asian/NHOPI, NH": "6.6",
1145
+ "Multiple/Other, NH": "5.9",
1146
+ "Hispanic": "7.5",
1147
+ "AI/AN, NH": "5.6"
1148
+ },
1149
+ {
1150
+ "week_end": "2025-01-25",
1151
+ "**Numeric Value Property**": "percent_visits",
1152
+ "pathogen": "RSV",
1153
+ "White, NH": "0.6",
1154
+ "Black, NH": "0.4",
1155
+ "AI/AN, NH": "0.9",
1156
+ "Asian/NHOPI, NH": "0.6",
1157
+ "Hispanic": "0.7",
1158
+ "Multiple/Other, NH": "0.7"
1159
+ },
1160
+ {
1161
+ "week_end": "2025-01-25",
1162
+ "**Numeric Value Property**": "percent_visits",
1163
+ "pathogen": "Combined",
1164
+ "White, NH": "7.5",
1165
+ "Black, NH": "10.2",
1166
+ "Asian/NHOPI, NH": "9.5",
1167
+ "AI/AN, NH": "8.0",
1168
+ "Multiple/Other, NH": "8.9",
1169
+ "Hispanic": "10.9"
1170
+ },
1171
+ {
1172
+ "week_end": "2025-01-25",
1173
+ "**Numeric Value Property**": "percent_visits",
1174
+ "pathogen": "Influenza",
1175
+ "Multiple/Other, NH": "7.5",
1176
+ "White, NH": "5.9",
1177
+ "Hispanic": "9.5",
1178
+ "Asian/NHOPI, NH": "8.2",
1179
+ "AI/AN, NH": "6.5",
1180
+ "Black, NH": "8.9"
1181
+ },
1182
+ {
1183
+ "week_end": "2025-01-25",
1184
+ "**Numeric Value Property**": "percent_visits",
1185
+ "pathogen": "COVID-19",
1186
+ "Black, NH": "1.0",
1187
+ "Multiple/Other, NH": "0.8",
1188
+ "White, NH": "1.1",
1189
+ "AI/AN, NH": "0.8",
1190
+ "Hispanic": "0.8",
1191
+ "Asian/NHOPI, NH": "0.8"
1192
+ },
1193
+ {
1194
+ "week_end": "2025-02-01",
1195
+ "**Numeric Value Property**": "percent_visits",
1196
+ "pathogen": "COVID-19",
1197
+ "White, NH": "1.1",
1198
+ "Multiple/Other, NH": "0.8",
1199
+ "AI/AN, NH": "0.8",
1200
+ "Black, NH": "1.0",
1201
+ "Hispanic": "0.8",
1202
+ "Asian/NHOPI, NH": "0.8"
1203
+ },
1204
+ {
1205
+ "week_end": "2025-02-01",
1206
+ "**Numeric Value Property**": "percent_visits",
1207
+ "pathogen": "Influenza",
1208
+ "Black, NH": "9.9",
1209
+ "Asian/NHOPI, NH": "9.2",
1210
+ "Hispanic": "10.2",
1211
+ "Multiple/Other, NH": "8.4",
1212
+ "AI/AN, NH": "7.1",
1213
+ "White, NH": "7.2"
1214
+ },
1215
+ {
1216
+ "week_end": "2025-02-01",
1217
+ "**Numeric Value Property**": "percent_visits",
1218
+ "pathogen": "Combined",
1219
+ "Hispanic": "11.6",
1220
+ "Multiple/Other, NH": "9.7",
1221
+ "Asian/NHOPI, NH": "10.4",
1222
+ "White, NH": "8.7",
1223
+ "Black, NH": "11.1",
1224
+ "AI/AN, NH": "8.7"
1225
+ },
1226
+ {
1227
+ "week_end": "2025-02-01",
1228
+ "**Numeric Value Property**": "percent_visits",
1229
+ "pathogen": "RSV",
1230
+ "AI/AN, NH": "0.9",
1231
+ "Hispanic": "0.7",
1232
+ "White, NH": "0.6",
1233
+ "Asian/NHOPI, NH": "0.5",
1234
+ "Black, NH": "0.3",
1235
+ "Multiple/Other, NH": "0.6"
1236
+ },
1237
+ {
1238
+ "week_end": "2025-02-08",
1239
+ "**Numeric Value Property**": "percent_visits",
1240
+ "pathogen": "Influenza",
1241
+ "Multiple/Other, NH": "8.0",
1242
+ "White, NH": "7.5",
1243
+ "Asian/NHOPI, NH": "9.1",
1244
+ "AI/AN, NH": "7.1",
1245
+ "Black, NH": "9.3",
1246
+ "Hispanic": "9.4"
1247
+ },
1248
+ {
1249
+ "week_end": "2025-02-08",
1250
+ "**Numeric Value Property**": "percent_visits",
1251
+ "pathogen": "Combined",
1252
+ "White, NH": "9.0",
1253
+ "Hispanic": "10.8",
1254
+ "AI/AN, NH": "8.8",
1255
+ "Asian/NHOPI, NH": "10.5",
1256
+ "Multiple/Other, NH": "9.3",
1257
+ "Black, NH": "10.5"
1258
+ },
1259
+ {
1260
+ "week_end": "2025-02-08",
1261
+ "**Numeric Value Property**": "percent_visits",
1262
+ "pathogen": "RSV",
1263
+ "White, NH": "0.6",
1264
+ "Black, NH": "0.3",
1265
+ "Asian/NHOPI, NH": "0.7",
1266
+ "Multiple/Other, NH": "0.6",
1267
+ "AI/AN, NH": "0.9",
1268
+ "Hispanic": "0.7"
1269
+ },
1270
+ {
1271
+ "week_end": "2025-02-08",
1272
+ "**Numeric Value Property**": "percent_visits",
1273
+ "pathogen": "COVID-19",
1274
+ "Asian/NHOPI, NH": "0.9",
1275
+ "AI/AN, NH": "1.0",
1276
+ "White, NH": "1.1",
1277
+ "Multiple/Other, NH": "0.8",
1278
+ "Black, NH": "1.1",
1279
+ "Hispanic": "0.8"
1280
+ },
1281
+ {
1282
+ "week_end": "2025-02-15",
1283
+ "**Numeric Value Property**": "percent_visits",
1284
+ "pathogen": "Influenza",
1285
+ "Black, NH": "7.1",
1286
+ "White, NH": "6.3",
1287
+ "Hispanic": "7.3",
1288
+ "Asian/NHOPI, NH": "7.6",
1289
+ "Multiple/Other, NH": "6.5",
1290
+ "AI/AN, NH": "6.4"
1291
+ },
1292
+ {
1293
+ "week_end": "2025-02-15",
1294
+ "**Numeric Value Property**": "percent_visits",
1295
+ "pathogen": "COVID-19",
1296
+ "Multiple/Other, NH": "0.8",
1297
+ "AI/AN, NH": "0.7",
1298
+ "Asian/NHOPI, NH": "0.8",
1299
+ "White, NH": "1.0",
1300
+ "Hispanic": "0.8",
1301
+ "Black, NH": "1.0"
1302
+ },
1303
+ {
1304
+ "week_end": "2025-02-15",
1305
+ "**Numeric Value Property**": "percent_visits",
1306
+ "pathogen": "RSV",
1307
+ "AI/AN, NH": "1.0",
1308
+ "Black, NH": "0.3",
1309
+ "White, NH": "0.5",
1310
+ "Multiple/Other, NH": "0.5",
1311
+ "Asian/NHOPI, NH": "0.5",
1312
+ "Hispanic": "0.6"
1313
+ },
1314
+ {
1315
+ "week_end": "2025-02-15",
1316
+ "**Numeric Value Property**": "percent_visits",
1317
+ "pathogen": "Combined",
1318
+ "AI/AN, NH": "8.0",
1319
+ "Hispanic": "8.5",
1320
+ "Asian/NHOPI, NH": "8.7",
1321
+ "White, NH": "7.8",
1322
+ "Multiple/Other, NH": "7.7",
1323
+ "Black, NH": "8.3"
1324
+ },
1325
+ {
1326
+ "week_end": "2025-02-22",
1327
+ "**Numeric Value Property**": "percent_visits",
1328
+ "pathogen": "RSV",
1329
+ "AI/AN, NH": "1.1",
1330
+ "White, NH": "0.5",
1331
+ "Hispanic": "0.5",
1332
+ "Asian/NHOPI, NH": "0.4",
1333
+ "Black, NH": "0.3",
1334
+ "Multiple/Other, NH": "0.5"
1335
+ },
1336
+ {
1337
+ "week_end": "2025-02-22",
1338
+ "**Numeric Value Property**": "percent_visits",
1339
+ "pathogen": "COVID-19",
1340
+ "AI/AN, NH": "0.7",
1341
+ "White, NH": "0.9",
1342
+ "Multiple/Other, NH": "0.7",
1343
+ "Black, NH": "0.9",
1344
+ "Asian/NHOPI, NH": "0.8",
1345
+ "Hispanic": "0.7"
1346
+ },
1347
+ {
1348
+ "week_end": "2025-02-22",
1349
+ "**Numeric Value Property**": "percent_visits",
1350
+ "pathogen": "Influenza",
1351
+ "Asian/NHOPI, NH": "6.0",
1352
+ "White, NH": "5.1",
1353
+ "Multiple/Other, NH": "5.0",
1354
+ "AI/AN, NH": "5.2",
1355
+ "Hispanic": "5.6",
1356
+ "Black, NH": "5.3"
1357
+ },
1358
+ {
1359
+ "week_end": "2025-02-22",
1360
+ "**Numeric Value Property**": "percent_visits",
1361
+ "pathogen": "Combined",
1362
+ "AI/AN, NH": "6.9",
1363
+ "White, NH": "6.4",
1364
+ "Multiple/Other, NH": "6.1",
1365
+ "Hispanic": "6.8",
1366
+ "Asian/NHOPI, NH": "7.1",
1367
+ "Black, NH": "6.4"
1368
+ },
1369
+ {
1370
+ "week_end": "2025-03-01",
1371
+ "**Numeric Value Property**": "percent_visits",
1372
+ "pathogen": "COVID-19",
1373
+ "Multiple/Other, NH": "0.7",
1374
+ "White, NH": "0.8",
1375
+ "Asian/NHOPI, NH": "0.7",
1376
+ "AI/AN, NH": "0.5",
1377
+ "Hispanic": "0.7",
1378
+ "Black, NH": "0.9"
1379
+ },
1380
+ {
1381
+ "week_end": "2025-03-01",
1382
+ "**Numeric Value Property**": "percent_visits",
1383
+ "pathogen": "Influenza",
1384
+ "White, NH": "3.9",
1385
+ "Black, NH": "4.0",
1386
+ "Multiple/Other, NH": "3.7",
1387
+ "AI/AN, NH": "4.2",
1388
+ "Asian/NHOPI, NH": "4.5",
1389
+ "Hispanic": "4.5"
1390
+ },
1391
+ {
1392
+ "week_end": "2025-03-01",
1393
+ "**Numeric Value Property**": "percent_visits",
1394
+ "pathogen": "RSV",
1395
+ "Black, NH": "0.2",
1396
+ "Multiple/Other, NH": "0.4",
1397
+ "White, NH": "0.4",
1398
+ "Hispanic": "0.5",
1399
+ "AI/AN, NH": "1.1",
1400
+ "Asian/NHOPI, NH": "0.4"
1401
+ },
1402
+ {
1403
+ "week_end": "2025-03-01",
1404
+ "**Numeric Value Property**": "percent_visits",
1405
+ "pathogen": "Combined",
1406
+ "White, NH": "5.1",
1407
+ "Asian/NHOPI, NH": "5.5",
1408
+ "Multiple/Other, NH": "4.8",
1409
+ "Black, NH": "5.1",
1410
+ "AI/AN, NH": "5.7",
1411
+ "Hispanic": "5.6"
1412
+ },
1413
+ {
1414
+ "week_end": "2025-03-08",
1415
+ "**Numeric Value Property**": "percent_visits",
1416
+ "pathogen": "COVID-19",
1417
+ "Asian/NHOPI, NH": "0.6",
1418
+ "White, NH": "0.8",
1419
+ "AI/AN, NH": "0.6",
1420
+ "Hispanic": "0.7",
1421
+ "Multiple/Other, NH": "0.6",
1422
+ "Black, NH": "0.9"
1423
+ },
1424
+ {
1425
+ "week_end": "2025-03-08",
1426
+ "**Numeric Value Property**": "percent_visits",
1427
+ "pathogen": "Influenza",
1428
+ "White, NH": "3.0",
1429
+ "Multiple/Other, NH": "3.1",
1430
+ "Black, NH": "3.4",
1431
+ "Hispanic": "3.6",
1432
+ "AI/AN, NH": "3.3",
1433
+ "Asian/NHOPI, NH": "4.0"
1434
+ },
1435
+ {
1436
+ "week_end": "2025-03-08",
1437
+ "**Numeric Value Property**": "percent_visits",
1438
+ "pathogen": "RSV",
1439
+ "Multiple/Other, NH": "0.4",
1440
+ "AI/AN, NH": "1.0",
1441
+ "Asian/NHOPI, NH": "0.4",
1442
+ "Black, NH": "0.2",
1443
+ "Hispanic": "0.4",
1444
+ "White, NH": "0.4"
1445
+ },
1446
+ {
1447
+ "week_end": "2025-03-08",
1448
+ "**Numeric Value Property**": "percent_visits",
1449
+ "pathogen": "Combined",
1450
+ "Asian/NHOPI, NH": "4.9",
1451
+ "White, NH": "4.2",
1452
+ "Multiple/Other, NH": "4.0",
1453
+ "Hispanic": "4.6",
1454
+ "AI/AN, NH": "4.8",
1455
+ "Black, NH": "4.5"
1456
+ },
1457
+ {
1458
+ "week_end": "2025-03-15",
1459
+ "**Numeric Value Property**": "percent_visits",
1460
+ "pathogen": "Influenza",
1461
+ "Asian/NHOPI, NH": "3.0",
1462
+ "AI/AN, NH": "2.9",
1463
+ "Hispanic": "2.9",
1464
+ "Black, NH": "2.8",
1465
+ "Multiple/Other, NH": "2.5",
1466
+ "White, NH": "2.4"
1467
+ },
1468
+ {
1469
+ "week_end": "2025-03-15",
1470
+ "**Numeric Value Property**": "percent_visits",
1471
+ "pathogen": "RSV",
1472
+ "White, NH": "0.3",
1473
+ "AI/AN, NH": "0.7",
1474
+ "Hispanic": "0.3",
1475
+ "Multiple/Other, NH": "0.3",
1476
+ "Black, NH": "0.2",
1477
+ "Asian/NHOPI, NH": "0.2"
1478
+ },
1479
+ {
1480
+ "week_end": "2025-03-15",
1481
+ "**Numeric Value Property**": "percent_visits",
1482
+ "pathogen": "Combined",
1483
+ "White, NH": "3.5",
1484
+ "Multiple/Other, NH": "3.4",
1485
+ "AI/AN, NH": "4.2",
1486
+ "Hispanic": "3.9",
1487
+ "Black, NH": "3.8",
1488
+ "Asian/NHOPI, NH": "3.9"
1489
+ },
1490
+ {
1491
+ "week_end": "2025-03-15",
1492
+ "**Numeric Value Property**": "percent_visits",
1493
+ "pathogen": "COVID-19",
1494
+ "Multiple/Other, NH": "0.7",
1495
+ "Black, NH": "0.9",
1496
+ "Hispanic": "0.7",
1497
+ "Asian/NHOPI, NH": "0.6",
1498
+ "White, NH": "0.8",
1499
+ "AI/AN, NH": "0.6"
1500
+ },
1501
+ {
1502
+ "week_end": "2025-03-22",
1503
+ "**Numeric Value Property**": "percent_visits",
1504
+ "pathogen": "Combined",
1505
+ "AI/AN, NH": "3.0",
1506
+ "Multiple/Other, NH": "2.8",
1507
+ "Black, NH": "2.8",
1508
+ "White, NH": "2.6",
1509
+ "Hispanic": "3.1",
1510
+ "Asian/NHOPI, NH": "3.3"
1511
+ },
1512
+ {
1513
+ "week_end": "2025-03-22",
1514
+ "**Numeric Value Property**": "percent_visits",
1515
+ "pathogen": "COVID-19",
1516
+ "Multiple/Other, NH": "0.6",
1517
+ "Black, NH": "0.8",
1518
+ "Asian/NHOPI, NH": "0.6",
1519
+ "White, NH": "0.7",
1520
+ "Hispanic": "0.6",
1521
+ "AI/AN, NH": "0.5"
1522
+ },
1523
+ {
1524
+ "week_end": "2025-03-22",
1525
+ "**Numeric Value Property**": "percent_visits",
1526
+ "pathogen": "RSV",
1527
+ "Asian/NHOPI, NH": "0.3",
1528
+ "Multiple/Other, NH": "0.3",
1529
+ "AI/AN, NH": "0.6",
1530
+ "Black, NH": "0.1",
1531
+ "White, NH": "0.3",
1532
+ "Hispanic": "0.3"
1533
+ },
1534
+ {
1535
+ "week_end": "2025-03-22",
1536
+ "**Numeric Value Property**": "percent_visits",
1537
+ "pathogen": "Influenza",
1538
+ "White, NH": "1.6",
1539
+ "Asian/NHOPI, NH": "2.5",
1540
+ "Hispanic": "2.3",
1541
+ "AI/AN, NH": "2.0",
1542
+ "Multiple/Other, NH": "1.9",
1543
+ "Black, NH": "1.9"
1544
+ },
1545
+ {
1546
+ "week_end": "2025-03-29",
1547
+ "**Numeric Value Property**": "percent_visits",
1548
+ "pathogen": "COVID-19",
1549
+ "AI/AN, NH": "0.5",
1550
+ "White, NH": "0.6",
1551
+ "Asian/NHOPI, NH": "0.7",
1552
+ "Multiple/Other, NH": "0.6",
1553
+ "Hispanic": "0.6",
1554
+ "Black, NH": "0.7"
1555
+ },
1556
+ {
1557
+ "week_end": "2025-03-29",
1558
+ "**Numeric Value Property**": "percent_visits",
1559
+ "pathogen": "RSV",
1560
+ "Asian/NHOPI, NH": "0.2",
1561
+ "White, NH": "0.2",
1562
+ "Hispanic": "0.2",
1563
+ "Multiple/Other, NH": "0.2",
1564
+ "AI/AN, NH": "0.4",
1565
+ "Black, NH": "0.1"
1566
+ },
1567
+ {
1568
+ "week_end": "2025-03-29",
1569
+ "**Numeric Value Property**": "percent_visits",
1570
+ "pathogen": "Combined",
1571
+ "Multiple/Other, NH": "2.3",
1572
+ "Black, NH": "2.4",
1573
+ "AI/AN, NH": "2.8",
1574
+ "Asian/NHOPI, NH": "3.0",
1575
+ "White, NH": "2.1",
1576
+ "Hispanic": "2.6"
1577
+ },
1578
+ {
1579
+ "week_end": "2025-03-29",
1580
+ "**Numeric Value Property**": "percent_visits",
1581
+ "pathogen": "Influenza",
1582
+ "White, NH": "1.2",
1583
+ "AI/AN, NH": "1.9",
1584
+ "Black, NH": "1.6",
1585
+ "Multiple/Other, NH": "1.6",
1586
+ "Hispanic": "1.8",
1587
+ "Asian/NHOPI, NH": "2.2"
1588
+ },
1589
+ {
1590
+ "week_end": "2025-04-05",
1591
+ "**Numeric Value Property**": "percent_visits",
1592
+ "pathogen": "RSV",
1593
+ "Multiple/Other, NH": "0.2",
1594
+ "Hispanic": "0.2",
1595
+ "White, NH": "0.2",
1596
+ "AI/AN, NH": "0.3",
1597
+ "Black, NH": "0.1",
1598
+ "Asian/NHOPI, NH": "0.2"
1599
+ },
1600
+ {
1601
+ "week_end": "2025-04-05",
1602
+ "**Numeric Value Property**": "percent_visits",
1603
+ "pathogen": "Combined",
1604
+ "AI/AN, NH": "2.0",
1605
+ "Black, NH": "1.9",
1606
+ "Hispanic": "2.2",
1607
+ "Multiple/Other, NH": "1.9",
1608
+ "White, NH": "1.6",
1609
+ "Asian/NHOPI, NH": "2.5"
1610
+ },
1611
+ {
1612
+ "week_end": "2025-04-05",
1613
+ "**Numeric Value Property**": "percent_visits",
1614
+ "pathogen": "Influenza",
1615
+ "AI/AN, NH": "1.3",
1616
+ "Hispanic": "1.5",
1617
+ "Black, NH": "1.2",
1618
+ "White, NH": "0.9",
1619
+ "Multiple/Other, NH": "1.2",
1620
+ "Asian/NHOPI, NH": "1.8"
1621
+ },
1622
+ {
1623
+ "week_end": "2025-04-05",
1624
+ "**Numeric Value Property**": "percent_visits",
1625
+ "pathogen": "COVID-19",
1626
+ "Hispanic": "0.6",
1627
+ "White, NH": "0.6",
1628
+ "Black, NH": "0.6",
1629
+ "Asian/NHOPI, NH": "0.6",
1630
+ "AI/AN, NH": "0.4",
1631
+ "Multiple/Other, NH": "0.5"
1632
+ },
1633
+ {
1634
+ "week_end": "2025-04-12",
1635
+ "**Numeric Value Property**": "percent_visits",
1636
+ "pathogen": "Combined",
1637
+ "Black, NH": "1.4",
1638
+ "AI/AN, NH": "1.9",
1639
+ "White, NH": "1.3",
1640
+ "Hispanic": "1.9",
1641
+ "Multiple/Other, NH": "1.6",
1642
+ "Asian/NHOPI, NH": "2.1"
1643
+ },
1644
+ {
1645
+ "week_end": "2025-04-12",
1646
+ "**Numeric Value Property**": "percent_visits",
1647
+ "pathogen": "COVID-19",
1648
+ "Multiple/Other, NH": "0.5",
1649
+ "Black, NH": "0.5",
1650
+ "Hispanic": "0.5",
1651
+ "AI/AN, NH": "0.5",
1652
+ "Asian/NHOPI, NH": "0.5",
1653
+ "White, NH": "0.5"
1654
+ },
1655
+ {
1656
+ "week_end": "2025-04-12",
1657
+ "**Numeric Value Property**": "percent_visits",
1658
+ "pathogen": "RSV",
1659
+ "Hispanic": "0.1",
1660
+ "Black, NH": "0.1",
1661
+ "AI/AN, NH": "0.2",
1662
+ "Asian/NHOPI, NH": "0.1",
1663
+ "Multiple/Other, NH": "0.1",
1664
+ "White, NH": "0.2"
1665
+ },
1666
+ {
1667
+ "week_end": "2025-04-12",
1668
+ "**Numeric Value Property**": "percent_visits",
1669
+ "pathogen": "Influenza",
1670
+ "Black, NH": "0.9",
1671
+ "Hispanic": "1.2",
1672
+ "White, NH": "0.6",
1673
+ "Multiple/Other, NH": "1.0",
1674
+ "Asian/NHOPI, NH": "1.5",
1675
+ "AI/AN, NH": "1.2"
1676
+ },
1677
+ {
1678
+ "week_end": "2025-04-19",
1679
+ "**Numeric Value Property**": "percent_visits",
1680
+ "pathogen": "COVID-19",
1681
+ "AI/AN, NH": "0.4",
1682
+ "Multiple/Other, NH": "0.4",
1683
+ "Black, NH": "0.5",
1684
+ "Asian/NHOPI, NH": "0.5",
1685
+ "White, NH": "0.5",
1686
+ "Hispanic": "0.5"
1687
+ },
1688
+ {
1689
+ "week_end": "2025-04-19",
1690
+ "**Numeric Value Property**": "percent_visits",
1691
+ "pathogen": "Combined",
1692
+ "AI/AN, NH": "1.5",
1693
+ "Black, NH": "1.4",
1694
+ "Hispanic": "1.7",
1695
+ "Multiple/Other, NH": "1.3",
1696
+ "Asian/NHOPI, NH": "1.8",
1697
+ "White, NH": "1.1"
1698
+ },
1699
+ {
1700
+ "week_end": "2025-04-19",
1701
+ "**Numeric Value Property**": "percent_visits",
1702
+ "pathogen": "RSV",
1703
+ "Hispanic": "0.1",
1704
+ "Asian/NHOPI, NH": "0.1",
1705
+ "Multiple/Other, NH": "0.1",
1706
+ "AI/AN, NH": "0.1",
1707
+ "White, NH": "0.1",
1708
+ "Black, NH": "0.1"
1709
+ },
1710
+ {
1711
+ "week_end": "2025-04-19",
1712
+ "**Numeric Value Property**": "percent_visits",
1713
+ "pathogen": "Influenza",
1714
+ "Black, NH": "0.8",
1715
+ "AI/AN, NH": "1.0",
1716
+ "Asian/NHOPI, NH": "1.2",
1717
+ "Hispanic": "1.1",
1718
+ "White, NH": "0.5",
1719
+ "Multiple/Other, NH": "0.8"
1720
+ },
1721
+ {
1722
+ "week_end": "2025-04-26",
1723
+ "**Numeric Value Property**": "percent_visits",
1724
+ "pathogen": "Influenza",
1725
+ "Black, NH": "0.7",
1726
+ "AI/AN, NH": "0.9",
1727
+ "Asian/NHOPI, NH": "1.0",
1728
+ "Hispanic": "0.9",
1729
+ "Multiple/Other, NH": "0.6",
1730
+ "White, NH": "0.4"
1731
+ },
1732
+ {
1733
+ "week_end": "2025-04-26",
1734
+ "**Numeric Value Property**": "percent_visits",
1735
+ "pathogen": "COVID-19",
1736
+ "Multiple/Other, NH": "0.4",
1737
+ "Black, NH": "0.4",
1738
+ "Hispanic": "0.5",
1739
+ "AI/AN, NH": "0.4",
1740
+ "White, NH": "0.4",
1741
+ "Asian/NHOPI, NH": "0.5"
1742
+ },
1743
+ {
1744
+ "week_end": "2025-04-26",
1745
+ "**Numeric Value Property**": "percent_visits",
1746
+ "pathogen": "Combined",
1747
+ "Hispanic": "1.4",
1748
+ "Multiple/Other, NH": "1.1",
1749
+ "White, NH": "1.0",
1750
+ "Black, NH": "1.1",
1751
+ "AI/AN, NH": "1.5",
1752
+ "Asian/NHOPI, NH": "1.6"
1753
+ },
1754
+ {
1755
+ "week_end": "2025-04-26",
1756
+ "**Numeric Value Property**": "percent_visits",
1757
+ "pathogen": "RSV",
1758
+ "Asian/NHOPI, NH": "0.1",
1759
+ "White, NH": "0.1",
1760
+ "Hispanic": "0.1",
1761
+ "AI/AN, NH": "0.2",
1762
+ "Multiple/Other, NH": "0.1",
1763
+ "Black, NH": "0.1"
1764
+ },
1765
+ {
1766
+ "week_end": "2025-05-03",
1767
+ "**Numeric Value Property**": "percent_visits",
1768
+ "pathogen": "Influenza",
1769
+ "Black, NH": "0.5",
1770
+ "AI/AN, NH": "0.6",
1771
+ "Multiple/Other, NH": "0.5",
1772
+ "Hispanic": "0.7",
1773
+ "Asian/NHOPI, NH": "0.8",
1774
+ "White, NH": "0.3"
1775
+ },
1776
+ {
1777
+ "week_end": "2025-05-03",
1778
+ "**Numeric Value Property**": "percent_visits",
1779
+ "pathogen": "COVID-19",
1780
+ "White, NH": "0.4",
1781
+ "Hispanic": "0.4",
1782
+ "Multiple/Other, NH": "0.4",
1783
+ "AI/AN, NH": "0.4",
1784
+ "Black, NH": "0.4",
1785
+ "Asian/NHOPI, NH": "0.5"
1786
+ },
1787
+ {
1788
+ "week_end": "2025-05-03",
1789
+ "**Numeric Value Property**": "percent_visits",
1790
+ "pathogen": "Combined",
1791
+ "White, NH": "0.7",
1792
+ "AI/AN, NH": "1.0",
1793
+ "Asian/NHOPI, NH": "1.4",
1794
+ "Multiple/Other, NH": "0.9",
1795
+ "Hispanic": "1.2",
1796
+ "Black, NH": "0.9"
1797
+ },
1798
+ {
1799
+ "week_end": "2025-05-03",
1800
+ "**Numeric Value Property**": "percent_visits",
1801
+ "pathogen": "RSV",
1802
+ "Black, NH": "0.1",
1803
+ "Multiple/Other, NH": "0.1",
1804
+ "AI/AN, NH": "0.1",
1805
+ "Asian/NHOPI, NH": "0.1",
1806
+ "White, NH": "0.1",
1807
+ "Hispanic": "0.1"
1808
+ },
1809
+ {
1810
+ "week_end": "2025-05-10",
1811
+ "**Numeric Value Property**": "percent_visits",
1812
+ "pathogen": "Influenza",
1813
+ "White, NH": "0.3",
1814
+ "Hispanic": "0.6",
1815
+ "Multiple/Other, NH": "0.4",
1816
+ "Black, NH": "0.4",
1817
+ "AI/AN, NH": "0.4",
1818
+ "Asian/NHOPI, NH": "0.7"
1819
+ },
1820
+ {
1821
+ "week_end": "2025-05-10",
1822
+ "**Numeric Value Property**": "percent_visits",
1823
+ "pathogen": "COVID-19",
1824
+ "Asian/NHOPI, NH": "0.5",
1825
+ "Multiple/Other, NH": "0.3",
1826
+ "AI/AN, NH": "0.4",
1827
+ "Black, NH": "0.3",
1828
+ "Hispanic": "0.4",
1829
+ "White, NH": "0.3"
1830
+ },
1831
+ {
1832
+ "week_end": "2025-05-10",
1833
+ "**Numeric Value Property**": "percent_visits",
1834
+ "pathogen": "Combined",
1835
+ "White, NH": "0.6",
1836
+ "AI/AN, NH": "0.8",
1837
+ "Black, NH": "0.7",
1838
+ "Hispanic": "1.1",
1839
+ "Asian/NHOPI, NH": "1.3",
1840
+ "Multiple/Other, NH": "0.8"
1841
+ },
1842
+ {
1843
+ "week_end": "2025-05-10",
1844
+ "**Numeric Value Property**": "percent_visits",
1845
+ "pathogen": "RSV",
1846
+ "Black, NH": "0.0",
1847
+ "AI/AN, NH": "0.1",
1848
+ "Asian/NHOPI, NH": "0.1",
1849
+ "White, NH": "0.1",
1850
+ "Multiple/Other, NH": "0.1",
1851
+ "Hispanic": "0.0"
1852
+ },
1853
+ {
1854
+ "week_end": "2025-05-17",
1855
+ "**Numeric Value Property**": "percent_visits",
1856
+ "pathogen": "COVID-19",
1857
+ "Black, NH": "0.3",
1858
+ "White, NH": "0.3",
1859
+ "Hispanic": "0.4",
1860
+ "Asian/NHOPI, NH": "0.6",
1861
+ "Multiple/Other, NH": "0.4",
1862
+ "AI/AN, NH": "0.3"
1863
+ },
1864
+ {
1865
+ "week_end": "2025-05-17",
1866
+ "**Numeric Value Property**": "percent_visits",
1867
+ "pathogen": "Combined",
1868
+ "Asian/NHOPI, NH": "1.3",
1869
+ "AI/AN, NH": "0.6",
1870
+ "Black, NH": "0.7",
1871
+ "Multiple/Other, NH": "0.7",
1872
+ "White, NH": "0.6",
1873
+ "Hispanic": "1.1"
1874
+ },
1875
+ {
1876
+ "week_end": "2025-05-17",
1877
+ "**Numeric Value Property**": "percent_visits",
1878
+ "pathogen": "RSV",
1879
+ "Hispanic": "0.1",
1880
+ "White, NH": "0.0",
1881
+ "Asian/NHOPI, NH": "0.0",
1882
+ "Black, NH": "0.0",
1883
+ "Multiple/Other, NH": "0.0",
1884
+ "AI/AN, NH": "0.0"
1885
+ },
1886
+ {
1887
+ "week_end": "2025-05-17",
1888
+ "**Numeric Value Property**": "percent_visits",
1889
+ "pathogen": "Influenza",
1890
+ "AI/AN, NH": "0.3",
1891
+ "Asian/NHOPI, NH": "0.7",
1892
+ "White, NH": "0.2",
1893
+ "Black, NH": "0.4",
1894
+ "Hispanic": "0.6",
1895
+ "Multiple/Other, NH": "0.3"
1896
+ },
1897
+ {
1898
+ "week_end": "2025-05-24",
1899
+ "**Numeric Value Property**": "percent_visits",
1900
+ "pathogen": "Influenza",
1901
+ "Black, NH": "0.3",
1902
+ "White, NH": "0.2",
1903
+ "AI/AN, NH": "0.3",
1904
+ "Asian/NHOPI, NH": "0.6",
1905
+ "Hispanic": "0.5",
1906
+ "Multiple/Other, NH": "0.3"
1907
+ },
1908
+ {
1909
+ "week_end": "2025-05-24",
1910
+ "**Numeric Value Property**": "percent_visits",
1911
+ "pathogen": "Combined",
1912
+ "Hispanic": "0.9",
1913
+ "Black, NH": "0.7",
1914
+ "Multiple/Other, NH": "0.7",
1915
+ "Asian/NHOPI, NH": "1.3",
1916
+ "White, NH": "0.5",
1917
+ "AI/AN, NH": "0.8"
1918
+ },
1919
+ {
1920
+ "week_end": "2025-05-24",
1921
+ "**Numeric Value Property**": "percent_visits",
1922
+ "pathogen": "COVID-19",
1923
+ "Hispanic": "0.4",
1924
+ "Black, NH": "0.3",
1925
+ "Multiple/Other, NH": "0.3",
1926
+ "White, NH": "0.3",
1927
+ "Asian/NHOPI, NH": "0.6",
1928
+ "AI/AN, NH": "0.5"
1929
+ },
1930
+ {
1931
+ "week_end": "2025-05-24",
1932
+ "**Numeric Value Property**": "percent_visits",
1933
+ "pathogen": "RSV",
1934
+ "Asian/NHOPI, NH": "0.0",
1935
+ "White, NH": "0.0",
1936
+ "AI/AN, NH": "0.0",
1937
+ "Black, NH": "0.0",
1938
+ "Hispanic": "0.0",
1939
+ "Multiple/Other, NH": "0.0"
1940
+ },
1941
+ {
1942
+ "week_end": "2025-05-31",
1943
+ "**Numeric Value Property**": "percent_visits",
1944
+ "pathogen": "Influenza",
1945
+ "Black, NH": "0.3",
1946
+ "AI/AN, NH": "0.3",
1947
+ "Asian/NHOPI, NH": "0.5",
1948
+ "Multiple/Other, NH": "0.3",
1949
+ "White, NH": "0.2",
1950
+ "Hispanic": "0.5"
1951
+ },
1952
+ {
1953
+ "week_end": "2025-05-31",
1954
+ "**Numeric Value Property**": "percent_visits",
1955
+ "pathogen": "RSV",
1956
+ "Multiple/Other, NH": "0.0",
1957
+ "White, NH": "0.0",
1958
+ "Asian/NHOPI, NH": "0.0",
1959
+ "Black, NH": "0.0",
1960
+ "AI/AN, NH": "0.0",
1961
+ "Hispanic": "0.0"
1962
+ },
1963
+ {
1964
+ "week_end": "2025-05-31",
1965
+ "**Numeric Value Property**": "percent_visits",
1966
+ "pathogen": "Combined",
1967
+ "AI/AN, NH": "0.8",
1968
+ "White, NH": "0.5",
1969
+ "Multiple/Other, NH": "0.7",
1970
+ "Hispanic": "1.0",
1971
+ "Asian/NHOPI, NH": "1.2",
1972
+ "Black, NH": "0.7"
1973
+ },
1974
+ {
1975
+ "week_end": "2025-05-31",
1976
+ "**Numeric Value Property**": "percent_visits",
1977
+ "pathogen": "COVID-19",
1978
+ "White, NH": "0.3",
1979
+ "AI/AN, NH": "0.5",
1980
+ "Multiple/Other, NH": "0.4",
1981
+ "Asian/NHOPI, NH": "0.7",
1982
+ "Black, NH": "0.3",
1983
+ "Hispanic": "0.5"
1984
+ },
1985
+ {
1986
+ "week_end": "2025-06-07",
1987
+ "**Numeric Value Property**": "percent_visits",
1988
+ "pathogen": "COVID-19",
1989
+ "Hispanic": "0.5",
1990
+ "White, NH": "0.3",
1991
+ "Multiple/Other, NH": "0.4",
1992
+ "Black, NH": "0.4",
1993
+ "AI/AN, NH": "0.4",
1994
+ "Asian/NHOPI, NH": "0.7"
1995
+ },
1996
+ {
1997
+ "week_end": "2025-06-07",
1998
+ "**Numeric Value Property**": "percent_visits",
1999
+ "pathogen": "Combined",
2000
+ "AI/AN, NH": "0.6",
2001
+ "Black, NH": "0.6",
2002
+ "Multiple/Other, NH": "0.6",
2003
+ "Asian/NHOPI, NH": "1.2",
2004
+ "White, NH": "0.5",
2005
+ "Hispanic": "0.9"
2006
+ },
2007
+ {
2008
+ "week_end": "2025-06-07",
2009
+ "**Numeric Value Property**": "percent_visits",
2010
+ "pathogen": "Influenza",
2011
+ "Multiple/Other, NH": "0.2",
2012
+ "Hispanic": "0.4",
2013
+ "White, NH": "0.2",
2014
+ "Asian/NHOPI, NH": "0.5",
2015
+ "AI/AN, NH": "0.2",
2016
+ "Black, NH": "0.2"
2017
+ },
2018
+ {
2019
+ "week_end": "2025-06-07",
2020
+ "**Numeric Value Property**": "percent_visits",
2021
+ "pathogen": "RSV",
2022
+ "White, NH": "0.0",
2023
+ "Multiple/Other, NH": "0.0",
2024
+ "Hispanic": "0.0",
2025
+ "AI/AN, NH": "0.0",
2026
+ "Black, NH": "0.0",
2027
+ "Asian/NHOPI, NH": "0.0"
2028
+ },
2029
+ {
2030
+ "week_end": "2025-06-14",
2031
+ "**Numeric Value Property**": "percent_visits",
2032
+ "pathogen": "RSV",
2033
+ "Hispanic": "0.0",
2034
+ "Multiple/Other, NH": "0.0",
2035
+ "AI/AN, NH": "0.0",
2036
+ "Black, NH": "0.0",
2037
+ "Asian/NHOPI, NH": "0.0",
2038
+ "White, NH": "0.0"
2039
+ },
2040
+ {
2041
+ "week_end": "2025-06-14",
2042
+ "**Numeric Value Property**": "percent_visits",
2043
+ "pathogen": "Combined",
2044
+ "White, NH": "0.4",
2045
+ "Multiple/Other, NH": "0.6",
2046
+ "Hispanic": "0.9",
2047
+ "Black, NH": "0.5",
2048
+ "AI/AN, NH": "0.6",
2049
+ "Asian/NHOPI, NH": "1.1"
2050
+ },
2051
+ {
2052
+ "week_end": "2025-06-14",
2053
+ "**Numeric Value Property**": "percent_visits",
2054
+ "pathogen": "Influenza",
2055
+ "Multiple/Other, NH": "0.2",
2056
+ "White, NH": "0.1",
2057
+ "Black, NH": "0.2",
2058
+ "AI/AN, NH": "0.2",
2059
+ "Hispanic": "0.3",
2060
+ "Asian/NHOPI, NH": "0.4"
2061
+ },
2062
+ {
2063
+ "week_end": "2025-06-14",
2064
+ "**Numeric Value Property**": "percent_visits",
2065
+ "pathogen": "COVID-19",
2066
+ "AI/AN, NH": "0.4",
2067
+ "White, NH": "0.3",
2068
+ "Multiple/Other, NH": "0.4",
2069
+ "Black, NH": "0.3",
2070
+ "Hispanic": "0.5",
2071
+ "Asian/NHOPI, NH": "0.7"
2072
+ },
2073
+ {
2074
+ "week_end": "2025-06-21",
2075
+ "**Numeric Value Property**": "percent_visits",
2076
+ "pathogen": "COVID-19",
2077
+ "Black, NH": "0.4",
2078
+ "Multiple/Other, NH": "0.4",
2079
+ "White, NH": "0.3",
2080
+ "Hispanic": "0.6",
2081
+ "Asian/NHOPI, NH": "0.6",
2082
+ "AI/AN, NH": "0.4"
2083
+ },
2084
+ {
2085
+ "week_end": "2025-06-21",
2086
+ "**Numeric Value Property**": "percent_visits",
2087
+ "pathogen": "Influenza",
2088
+ "Asian/NHOPI, NH": "0.3",
2089
+ "AI/AN, NH": "0.2",
2090
+ "Black, NH": "0.2",
2091
+ "Multiple/Other, NH": "0.2",
2092
+ "White, NH": "0.1",
2093
+ "Hispanic": "0.3"
2094
+ },
2095
+ {
2096
+ "week_end": "2025-06-21",
2097
+ "**Numeric Value Property**": "percent_visits",
2098
+ "pathogen": "RSV",
2099
+ "Asian/NHOPI, NH": "0.0",
2100
+ "Multiple/Other, NH": "0.0",
2101
+ "Black, NH": "0.0",
2102
+ "Hispanic": "0.0",
2103
+ "AI/AN, NH": "0.0",
2104
+ "White, NH": "0.0"
2105
+ },
2106
+ {
2107
+ "week_end": "2025-06-21",
2108
+ "**Numeric Value Property**": "percent_visits",
2109
+ "pathogen": "Combined",
2110
+ "AI/AN, NH": "0.5",
2111
+ "White, NH": "0.4",
2112
+ "Hispanic": "0.9",
2113
+ "Black, NH": "0.5",
2114
+ "Multiple/Other, NH": "0.6",
2115
+ "Asian/NHOPI, NH": "0.9"
2116
+ },
2117
+ {
2118
+ "week_end": "2025-06-28",
2119
+ "**Numeric Value Property**": "percent_visits",
2120
+ "pathogen": "Influenza",
2121
+ "Multiple/Other, NH": "0.1",
2122
+ "White, NH": "0.1",
2123
+ "Hispanic": "0.2",
2124
+ "Black, NH": "0.2",
2125
+ "AI/AN, NH": "0.1",
2126
+ "Asian/NHOPI, NH": "0.3"
2127
+ },
2128
+ {
2129
+ "week_end": "2025-06-28",
2130
+ "**Numeric Value Property**": "percent_visits",
2131
+ "pathogen": "Combined",
2132
+ "Hispanic": "0.9",
2133
+ "Asian/NHOPI, NH": "1.0",
2134
+ "Multiple/Other, NH": "0.6",
2135
+ "White, NH": "0.5",
2136
+ "Black, NH": "0.6",
2137
+ "AI/AN, NH": "0.5"
2138
+ },
2139
+ {
2140
+ "week_end": "2025-06-28",
2141
+ "**Numeric Value Property**": "percent_visits",
2142
+ "pathogen": "COVID-19",
2143
+ "Black, NH": "0.4",
2144
+ "White, NH": "0.3",
2145
+ "Multiple/Other, NH": "0.4",
2146
+ "AI/AN, NH": "0.4",
2147
+ "Asian/NHOPI, NH": "0.7",
2148
+ "Hispanic": "0.6"
2149
+ },
2150
+ {
2151
+ "week_end": "2025-06-28",
2152
+ "**Numeric Value Property**": "percent_visits",
2153
+ "pathogen": "RSV",
2154
+ "AI/AN, NH": "0.0",
2155
+ "Multiple/Other, NH": "0.0",
2156
+ "Hispanic": "0.0",
2157
+ "Asian/NHOPI, NH": "0.0",
2158
+ "Black, NH": "0.0",
2159
+ "White, NH": "0.0"
2160
+ },
2161
+ {
2162
+ "week_end": "2025-07-05",
2163
+ "**Numeric Value Property**": "percent_visits",
2164
+ "pathogen": "Influenza",
2165
+ "Multiple/Other, NH": "0.1",
2166
+ "AI/AN, NH": "0.1",
2167
+ "Hispanic": "0.2",
2168
+ "Black, NH": "0.1",
2169
+ "White, NH": "0.1",
2170
+ "Asian/NHOPI, NH": "0.3"
2171
+ },
2172
+ {
2173
+ "week_end": "2025-07-05",
2174
+ "**Numeric Value Property**": "percent_visits",
2175
+ "pathogen": "RSV",
2176
+ "Multiple/Other, NH": "0.0",
2177
+ "Asian/NHOPI, NH": "0.0",
2178
+ "White, NH": "0.0",
2179
+ "Hispanic": "0.0",
2180
+ "Black, NH": "0.0",
2181
+ "AI/AN, NH": "0.0"
2182
+ },
2183
+ {
2184
+ "week_end": "2025-07-05",
2185
+ "**Numeric Value Property**": "percent_visits",
2186
+ "pathogen": "Combined",
2187
+ "Black, NH": "0.6",
2188
+ "Asian/NHOPI, NH": "1.0",
2189
+ "Hispanic": "0.9",
2190
+ "AI/AN, NH": "0.4",
2191
+ "Multiple/Other, NH": "0.6",
2192
+ "White, NH": "0.5"
2193
+ },
2194
+ {
2195
+ "week_end": "2025-07-05",
2196
+ "**Numeric Value Property**": "percent_visits",
2197
+ "pathogen": "COVID-19",
2198
+ "White, NH": "0.4",
2199
+ "AI/AN, NH": "0.3",
2200
+ "Multiple/Other, NH": "0.4",
2201
+ "Hispanic": "0.7",
2202
+ "Asian/NHOPI, NH": "0.8",
2203
+ "Black, NH": "0.5"
2204
+ },
2205
+ {
2206
+ "week_end": "2025-07-12",
2207
+ "**Numeric Value Property**": "percent_visits",
2208
+ "pathogen": "Combined",
2209
+ "Asian/NHOPI, NH": "1.2",
2210
+ "Multiple/Other, NH": "0.7",
2211
+ "Hispanic": "1.0",
2212
+ "AI/AN, NH": "0.5",
2213
+ "White, NH": "0.5",
2214
+ "Black, NH": "0.7"
2215
+ },
2216
+ {
2217
+ "week_end": "2025-07-12",
2218
+ "**Numeric Value Property**": "percent_visits",
2219
+ "pathogen": "COVID-19",
2220
+ "Asian/NHOPI, NH": "1.0",
2221
+ "Multiple/Other, NH": "0.6",
2222
+ "White, NH": "0.4",
2223
+ "Black, NH": "0.6",
2224
+ "Hispanic": "0.9",
2225
+ "AI/AN, NH": "0.4"
2226
+ },
2227
+ {
2228
+ "week_end": "2025-07-12",
2229
+ "**Numeric Value Property**": "percent_visits",
2230
+ "pathogen": "Influenza",
2231
+ "AI/AN, NH": "0.1",
2232
+ "Asian/NHOPI, NH": "0.2",
2233
+ "Multiple/Other, NH": "0.1",
2234
+ "Hispanic": "0.2",
2235
+ "Black, NH": "0.1",
2236
+ "White, NH": "0.1"
2237
+ },
2238
+ {
2239
+ "week_end": "2025-07-12",
2240
+ "**Numeric Value Property**": "percent_visits",
2241
+ "pathogen": "RSV",
2242
+ "Multiple/Other, NH": "0.0",
2243
+ "Asian/NHOPI, NH": "0.0",
2244
+ "AI/AN, NH": "0.0",
2245
+ "Black, NH": "0.0",
2246
+ "Hispanic": "0.0",
2247
+ "White, NH": "0.0"
2248
+ },
2249
+ {
2250
+ "week_end": "2025-07-19",
2251
+ "**Numeric Value Property**": "percent_visits",
2252
+ "pathogen": "COVID-19",
2253
+ "Hispanic": "1.0",
2254
+ "Black, NH": "0.7",
2255
+ "Asian/NHOPI, NH": "1.1",
2256
+ "Multiple/Other, NH": "0.6",
2257
+ "AI/AN, NH": "0.5",
2258
+ "White, NH": "0.5"
2259
+ },
2260
+ {
2261
+ "week_end": "2025-07-19",
2262
+ "**Numeric Value Property**": "percent_visits",
2263
+ "pathogen": "Combined",
2264
+ "AI/AN, NH": "0.6",
2265
+ "Asian/NHOPI, NH": "1.2",
2266
+ "Multiple/Other, NH": "0.7",
2267
+ "Black, NH": "0.8",
2268
+ "White, NH": "0.6",
2269
+ "Hispanic": "1.1"
2270
+ },
2271
+ {
2272
+ "week_end": "2025-07-19",
2273
+ "**Numeric Value Property**": "percent_visits",
2274
+ "pathogen": "RSV",
2275
+ "AI/AN, NH": "0.0",
2276
+ "Hispanic": "0.0",
2277
+ "White, NH": "0.0",
2278
+ "Multiple/Other, NH": "0.0",
2279
+ "Black, NH": "0.0",
2280
+ "Asian/NHOPI, NH": "0.0"
2281
+ },
2282
+ {
2283
+ "week_end": "2025-07-19",
2284
+ "**Numeric Value Property**": "percent_visits",
2285
+ "pathogen": "Influenza",
2286
+ "Asian/NHOPI, NH": "0.2",
2287
+ "AI/AN, NH": "0.1",
2288
+ "Black, NH": "0.1",
2289
+ "Multiple/Other, NH": "0.1",
2290
+ "Hispanic": "0.1",
2291
+ "White, NH": "0.1"
2292
+ },
2293
+ {
2294
+ "week_end": "2025-07-26",
2295
+ "**Numeric Value Property**": "percent_visits",
2296
+ "pathogen": "COVID-19",
2297
+ "Hispanic": "1.2",
2298
+ "AI/AN, NH": "0.7",
2299
+ "Asian/NHOPI, NH": "1.3",
2300
+ "White, NH": "0.6",
2301
+ "Black, NH": "0.8",
2302
+ "Multiple/Other, NH": "0.7"
2303
+ },
2304
+ {
2305
+ "week_end": "2025-07-26",
2306
+ "**Numeric Value Property**": "percent_visits",
2307
+ "pathogen": "Combined",
2308
+ "Asian/NHOPI, NH": "1.4",
2309
+ "AI/AN, NH": "0.8",
2310
+ "Hispanic": "1.3",
2311
+ "Black, NH": "0.9",
2312
+ "Multiple/Other, NH": "0.8",
2313
+ "White, NH": "0.6"
2314
+ },
2315
+ {
2316
+ "week_end": "2025-07-26",
2317
+ "**Numeric Value Property**": "percent_visits",
2318
+ "pathogen": "Influenza",
2319
+ "AI/AN, NH": "0.1",
2320
+ "Hispanic": "0.1",
2321
+ "White, NH": "0.1",
2322
+ "Black, NH": "0.1",
2323
+ "Multiple/Other, NH": "0.1",
2324
+ "Asian/NHOPI, NH": "0.2"
2325
+ },
2326
+ {
2327
+ "week_end": "2025-07-26",
2328
+ "**Numeric Value Property**": "percent_visits",
2329
+ "pathogen": "RSV",
2330
+ "Black, NH": "0.0",
2331
+ "Hispanic": "0.0",
2332
+ "White, NH": "0.0",
2333
+ "AI/AN, NH": "0.0",
2334
+ "Asian/NHOPI, NH": "0.0",
2335
+ "Multiple/Other, NH": "0.0"
2336
+ },
2337
+ {
2338
+ "week_end": "2025-08-02",
2339
+ "**Numeric Value Property**": "percent_visits",
2340
+ "pathogen": "Combined",
2341
+ "AI/AN, NH": "1.0",
2342
+ "White, NH": "0.7",
2343
+ "Black, NH": "1.2",
2344
+ "Asian/NHOPI, NH": "1.6",
2345
+ "Multiple/Other, NH": "1.0",
2346
+ "Hispanic": "1.6"
2347
+ },
2348
+ {
2349
+ "week_end": "2025-08-02",
2350
+ "**Numeric Value Property**": "percent_visits",
2351
+ "pathogen": "RSV",
2352
+ "Hispanic": "0.0",
2353
+ "Black, NH": "0.0",
2354
+ "AI/AN, NH": "0.0",
2355
+ "Asian/NHOPI, NH": "0.0",
2356
+ "Multiple/Other, NH": "0.0",
2357
+ "White, NH": "0.0"
2358
+ },
2359
+ {
2360
+ "week_end": "2025-08-02",
2361
+ "**Numeric Value Property**": "percent_visits",
2362
+ "pathogen": "COVID-19",
2363
+ "Asian/NHOPI, NH": "1.4",
2364
+ "Black, NH": "1.0",
2365
+ "Hispanic": "1.5",
2366
+ "White, NH": "0.7",
2367
+ "AI/AN, NH": "1.0",
2368
+ "Multiple/Other, NH": "0.9"
2369
+ },
2370
+ {
2371
+ "week_end": "2025-08-02",
2372
+ "**Numeric Value Property**": "percent_visits",
2373
+ "pathogen": "Influenza",
2374
+ "White, NH": "0.1",
2375
+ "Hispanic": "0.1",
2376
+ "Multiple/Other, NH": "0.1",
2377
+ "Black, NH": "0.1",
2378
+ "AI/AN, NH": "0.1",
2379
+ "Asian/NHOPI, NH": "0.2"
2380
+ },
2381
+ {
2382
+ "week_end": "2025-08-09",
2383
+ "**Numeric Value Property**": "percent_visits",
2384
+ "pathogen": "RSV",
2385
+ "AI/AN, NH": "0.0",
2386
+ "Black, NH": "0.0",
2387
+ "Multiple/Other, NH": "0.0",
2388
+ "Asian/NHOPI, NH": "0.0",
2389
+ "White, NH": "0.0",
2390
+ "Hispanic": "0.0"
2391
+ },
2392
+ {
2393
+ "week_end": "2025-08-09",
2394
+ "**Numeric Value Property**": "percent_visits",
2395
+ "pathogen": "Combined",
2396
+ "Hispanic": "1.9",
2397
+ "AI/AN, NH": "1.1",
2398
+ "White, NH": "0.9",
2399
+ "Multiple/Other, NH": "1.2",
2400
+ "Black, NH": "1.3",
2401
+ "Asian/NHOPI, NH": "1.8"
2402
+ },
2403
+ {
2404
+ "week_end": "2025-08-09",
2405
+ "**Numeric Value Property**": "percent_visits",
2406
+ "pathogen": "Influenza",
2407
+ "Asian/NHOPI, NH": "0.2",
2408
+ "Hispanic": "0.1",
2409
+ "AI/AN, NH": "0.1",
2410
+ "White, NH": "0.1",
2411
+ "Multiple/Other, NH": "0.1",
2412
+ "Black, NH": "0.1"
2413
+ },
2414
+ {
2415
+ "week_end": "2025-08-09",
2416
+ "**Numeric Value Property**": "percent_visits",
2417
+ "pathogen": "COVID-19",
2418
+ "Black, NH": "1.2",
2419
+ "Hispanic": "1.7",
2420
+ "Asian/NHOPI, NH": "1.6",
2421
+ "Multiple/Other, NH": "1.1",
2422
+ "White, NH": "0.8",
2423
+ "AI/AN, NH": "1.0"
2424
+ },
2425
+ {
2426
+ "week_end": "2025-08-16",
2427
+ "**Numeric Value Property**": "percent_visits",
2428
+ "pathogen": "COVID-19",
2429
+ "White, NH": "1.0",
2430
+ "Black, NH": "1.4",
2431
+ "Asian/NHOPI, NH": "1.8",
2432
+ "AI/AN, NH": "1.5",
2433
+ "Hispanic": "2.0",
2434
+ "Multiple/Other, NH": "1.3"
2435
+ },
2436
+ {
2437
+ "week_end": "2025-08-16",
2438
+ "**Numeric Value Property**": "percent_visits",
2439
+ "pathogen": "RSV",
2440
+ "Black, NH": "0.0",
2441
+ "Multiple/Other, NH": "0.0",
2442
+ "Asian/NHOPI, NH": "0.0",
2443
+ "White, NH": "0.0",
2444
+ "Hispanic": "0.0",
2445
+ "AI/AN, NH": "0.0"
2446
+ },
2447
+ {
2448
+ "week_end": "2025-08-16",
2449
+ "**Numeric Value Property**": "percent_visits",
2450
+ "pathogen": "Influenza",
2451
+ "White, NH": "0.1",
2452
+ "Multiple/Other, NH": "0.1",
2453
+ "AI/AN, NH": "0.1",
2454
+ "Hispanic": "0.1",
2455
+ "Asian/NHOPI, NH": "0.2",
2456
+ "Black, NH": "0.2"
2457
+ },
2458
+ {
2459
+ "week_end": "2025-08-16",
2460
+ "**Numeric Value Property**": "percent_visits",
2461
+ "pathogen": "Combined",
2462
+ "White, NH": "1.0",
2463
+ "Asian/NHOPI, NH": "2.0",
2464
+ "AI/AN, NH": "1.6",
2465
+ "Hispanic": "2.2",
2466
+ "Multiple/Other, NH": "1.4",
2467
+ "Black, NH": "1.6"
2468
+ },
2469
+ {
2470
+ "week_end": "2025-08-23",
2471
+ "**Numeric Value Property**": "percent_visits",
2472
+ "pathogen": "COVID-19",
2473
+ "Hispanic": "2.4",
2474
+ "AI/AN, NH": "2.0",
2475
+ "White, NH": "1.1",
2476
+ "Black, NH": "1.8",
2477
+ "Multiple/Other, NH": "1.6",
2478
+ "Asian/NHOPI, NH": "2.0"
2479
+ },
2480
+ {
2481
+ "week_end": "2025-08-23",
2482
+ "**Numeric Value Property**": "percent_visits",
2483
+ "pathogen": "RSV",
2484
+ "AI/AN, NH": "0.0",
2485
+ "Black, NH": "0.0",
2486
+ "Multiple/Other, NH": "0.0",
2487
+ "White, NH": "0.0",
2488
+ "Asian/NHOPI, NH": "0.0",
2489
+ "Hispanic": "0.0"
2490
+ },
2491
+ {
2492
+ "week_end": "2025-08-23",
2493
+ "**Numeric Value Property**": "percent_visits",
2494
+ "pathogen": "Influenza",
2495
+ "White, NH": "0.1",
2496
+ "Asian/NHOPI, NH": "0.2",
2497
+ "AI/AN, NH": "0.1",
2498
+ "Hispanic": "0.2",
2499
+ "Multiple/Other, NH": "0.1",
2500
+ "Black, NH": "0.2"
2501
+ },
2502
+ {
2503
+ "week_end": "2025-08-23",
2504
+ "**Numeric Value Property**": "percent_visits",
2505
+ "pathogen": "Combined",
2506
+ "AI/AN, NH": "2.1",
2507
+ "Asian/NHOPI, NH": "2.2",
2508
+ "White, NH": "1.2",
2509
+ "Hispanic": "2.6",
2510
+ "Multiple/Other, NH": "1.7",
2511
+ "Black, NH": "2.0"
2512
+ },
2513
+ {
2514
+ "week_end": "2025-08-30",
2515
+ "**Numeric Value Property**": "percent_visits",
2516
+ "pathogen": "RSV",
2517
+ "Hispanic": "0.0",
2518
+ "White, NH": "0.0",
2519
+ "Multiple/Other, NH": "0.0",
2520
+ "Asian/NHOPI, NH": "0.0",
2521
+ "AI/AN, NH": "0.0",
2522
+ "Black, NH": "0.0"
2523
+ },
2524
+ {
2525
+ "week_end": "2025-08-30",
2526
+ "**Numeric Value Property**": "percent_visits",
2527
+ "pathogen": "COVID-19",
2528
+ "Black, NH": "1.9",
2529
+ "AI/AN, NH": "1.5",
2530
+ "White, NH": "1.3",
2531
+ "Asian/NHOPI, NH": "1.9",
2532
+ "Multiple/Other, NH": "1.7",
2533
+ "Hispanic": "2.5"
2534
+ },
2535
+ {
2536
+ "week_end": "2025-08-30",
2537
+ "**Numeric Value Property**": "percent_visits",
2538
+ "pathogen": "Influenza",
2539
+ "AI/AN, NH": "0.1",
2540
+ "Multiple/Other, NH": "0.1",
2541
+ "Asian/NHOPI, NH": "0.2",
2542
+ "Black, NH": "0.2",
2543
+ "Hispanic": "0.2",
2544
+ "White, NH": "0.1"
2545
+ },
2546
+ {
2547
+ "week_end": "2025-08-30",
2548
+ "**Numeric Value Property**": "percent_visits",
2549
+ "pathogen": "Combined",
2550
+ "Asian/NHOPI, NH": "2.2",
2551
+ "White, NH": "1.4",
2552
+ "Black, NH": "2.1",
2553
+ "AI/AN, NH": "1.7",
2554
+ "Multiple/Other, NH": "1.9",
2555
+ "Hispanic": "2.7"
2556
+ },
2557
+ {
2558
+ "week_end": "2025-09-06",
2559
+ "**Numeric Value Property**": "percent_visits",
2560
+ "pathogen": "Influenza",
2561
+ "White, NH": "0.1",
2562
+ "Black, NH": "0.3",
2563
+ "AI/AN, NH": "0.2",
2564
+ "Multiple/Other, NH": "0.1",
2565
+ "Asian/NHOPI, NH": "0.3",
2566
+ "Hispanic": "0.2"
2567
+ },
2568
+ {
2569
+ "week_end": "2025-09-06",
2570
+ "**Numeric Value Property**": "percent_visits",
2571
+ "pathogen": "RSV",
2572
+ "Hispanic": "0.0",
2573
+ "Black, NH": "0.0",
2574
+ "White, NH": "0.0",
2575
+ "Asian/NHOPI, NH": "0.0",
2576
+ "Multiple/Other, NH": "0.0",
2577
+ "AI/AN, NH": "0.0"
2578
+ },
2579
+ {
2580
+ "week_end": "2025-09-06",
2581
+ "**Numeric Value Property**": "percent_visits",
2582
+ "pathogen": "COVID-19",
2583
+ "Hispanic": "2.1",
2584
+ "AI/AN, NH": "1.5",
2585
+ "Asian/NHOPI, NH": "1.9",
2586
+ "Black, NH": "1.7",
2587
+ "White, NH": "1.3",
2588
+ "Multiple/Other, NH": "1.6"
2589
+ },
2590
+ {
2591
+ "week_end": "2025-09-06",
2592
+ "**Numeric Value Property**": "percent_visits",
2593
+ "pathogen": "Combined",
2594
+ "Black, NH": "2.0",
2595
+ "Asian/NHOPI, NH": "2.1",
2596
+ "AI/AN, NH": "1.7",
2597
+ "Multiple/Other, NH": "1.7",
2598
+ "White, NH": "1.4",
2599
+ "Hispanic": "2.3"
2600
+ },
2601
+ {
2602
+ "week_end": "2025-09-13",
2603
+ "**Numeric Value Property**": "percent_visits",
2604
+ "pathogen": "RSV",
2605
+ "Black, NH": "0.0",
2606
+ "AI/AN, NH": "0.0",
2607
+ "Asian/NHOPI, NH": "0.0",
2608
+ "Hispanic": "0.0",
2609
+ "Multiple/Other, NH": "0.0",
2610
+ "White, NH": "0.0"
2611
+ },
2612
+ {
2613
+ "week_end": "2025-09-13",
2614
+ "**Numeric Value Property**": "percent_visits",
2615
+ "pathogen": "Combined",
2616
+ "Black, NH": "1.5",
2617
+ "Asian/NHOPI, NH": "1.8",
2618
+ "AI/AN, NH": "1.5",
2619
+ "Multiple/Other, NH": "1.4",
2620
+ "White, NH": "1.2",
2621
+ "Hispanic": "1.8"
2622
+ },
2623
+ {
2624
+ "week_end": "2025-09-13",
2625
+ "**Numeric Value Property**": "percent_visits",
2626
+ "pathogen": "COVID-19",
2627
+ "White, NH": "1.1",
2628
+ "Black, NH": "1.3",
2629
+ "Multiple/Other, NH": "1.2",
2630
+ "AI/AN, NH": "1.3",
2631
+ "Asian/NHOPI, NH": "1.5",
2632
+ "Hispanic": "1.5"
2633
+ },
2634
+ {
2635
+ "week_end": "2025-09-13",
2636
+ "**Numeric Value Property**": "percent_visits",
2637
+ "pathogen": "Influenza",
2638
+ "AI/AN, NH": "0.2",
2639
+ "White, NH": "0.1",
2640
+ "Hispanic": "0.2",
2641
+ "Black, NH": "0.2",
2642
+ "Multiple/Other, NH": "0.1",
2643
+ "Asian/NHOPI, NH": "0.2"
2644
+ }
2645
+ ]
2646
+ }