@cdc/chart 4.26.1 → 4.26.3

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 (173) hide show
  1. package/CLAUDE.local.md +79 -0
  2. package/LICENSE +201 -0
  3. package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
  4. package/dist/cdcchart.js +54742 -49796
  5. package/examples/data/data-with-metadata.json +10 -0
  6. package/examples/default.json +378 -0
  7. package/examples/feature/__data__/horizon-chart-data.json +373 -0
  8. package/examples/feature/annotations/index.json +3 -6
  9. package/examples/feature/horizon/horizon-chart.json +395 -0
  10. package/examples/feature/pie/planet-pie-example-config.json +2 -1
  11. package/examples/line-chart-states.json +1085 -0
  12. package/examples/metadata-variables.json +58 -0
  13. package/examples/private/123.json +694 -0
  14. package/examples/private/anchor-issue.json +4094 -0
  15. package/examples/private/backwards-slider.json +10430 -0
  16. package/examples/private/georgia.csv +160 -0
  17. package/examples/private/timeline-data.json +1 -0
  18. package/examples/private/timeline.json +389 -0
  19. package/examples/radar-chart-simple.json +133 -0
  20. package/examples/radar-chart.json +148 -0
  21. package/index.html +1 -31
  22. package/package.json +57 -59
  23. package/src/CdcChart.tsx +8 -4
  24. package/src/CdcChartComponent.tsx +398 -284
  25. package/src/_stories/Chart.Anchors.stories.tsx +10 -0
  26. package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
  27. package/src/_stories/Chart.CI.stories.tsx +13 -0
  28. package/src/_stories/Chart.Combo.stories.tsx +17 -0
  29. package/src/_stories/Chart.CustomColors.stories.tsx +78 -0
  30. package/src/_stories/Chart.Defaults.stories.tsx +95 -0
  31. package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
  32. package/src/_stories/Chart.Filters.stories.tsx +4 -0
  33. package/src/_stories/Chart.Forecast.stories.tsx +4 -0
  34. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
  35. package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
  36. package/src/_stories/Chart.Patterns.stories.tsx +4 -0
  37. package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
  38. package/src/_stories/Chart.Regions.Categorical.stories.tsx +13 -0
  39. package/src/_stories/Chart.Regions.DateScale.stories.tsx +19 -0
  40. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +25 -10
  41. package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
  42. package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
  43. package/src/_stories/Chart.SmallestLeftAxisMax.stories.tsx +64 -0
  44. package/src/_stories/Chart.stories.tsx +72 -1
  45. package/src/_stories/Chart.tooltip.stories.tsx +7 -0
  46. package/src/_stories/ChartAnnotation.stories.tsx +10 -0
  47. package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
  48. package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
  49. package/src/_stories/ChartBar.Editor.stories.tsx +97 -38
  50. package/src/_stories/ChartBrush.Editor.stories.tsx +11 -25
  51. package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
  52. package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
  53. package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
  54. package/src/_stories/ChartBrush.stories.tsx +7 -0
  55. package/src/_stories/ChartEditor.Editor.stories.tsx +1 -1
  56. package/src/_stories/ChartEditor.stories.tsx +7 -0
  57. package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
  58. package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
  59. package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
  60. package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
  61. package/src/_stories/TechAdoptionWithLinks.stories.tsx +7 -0
  62. package/src/_stories/_mock/brush_continuous.json +86 -0
  63. package/src/_stories/_mock/brush_date_large.json +176 -0
  64. package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
  65. package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
  66. package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
  67. package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
  68. package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
  69. package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
  70. package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
  71. package/src/_stories/_mock/paired-bar-abbr.json +421 -0
  72. package/src/_stories/_mock/pie_custom_colors.json +268 -0
  73. package/src/_stories/_mock/smallest_left_axis_max.json +104 -0
  74. package/src/components/Annotations/components/AnnotationDraggable.styles.css +14 -20
  75. package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
  76. package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
  77. package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
  78. package/src/components/Annotations/components/AnnotationList.styles.css +12 -18
  79. package/src/components/Annotations/components/AnnotationList.tsx +5 -4
  80. package/src/components/Annotations/components/findNearestDatum.ts +75 -85
  81. package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
  82. package/src/components/Axis/BottomAxis.tsx +277 -0
  83. package/src/components/Axis/LeftAxis.tsx +404 -0
  84. package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
  85. package/src/components/Axis/PairedBarAxis.tsx +192 -0
  86. package/src/components/Axis/README.md +94 -0
  87. package/src/components/Axis/RightAxis.tsx +108 -0
  88. package/src/components/Axis/axis.constants.ts +21 -0
  89. package/src/components/Axis/index.ts +7 -0
  90. package/src/components/BarChart/components/BarChart.Horizontal.tsx +12 -28
  91. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +12 -30
  92. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +12 -31
  93. package/src/components/BarChart/components/BarChart.Vertical.tsx +12 -28
  94. package/src/components/BarChart/components/BarChart.tsx +7 -1
  95. package/src/components/BarChart/helpers/getPatternUrl.ts +94 -0
  96. package/src/components/BarChart/helpers/tests/getPatternUrl.test.ts +134 -0
  97. package/src/components/BarChart/helpers/useBarChart.ts +3 -0
  98. package/src/components/Brush/BrushSelector.tsx +155 -22
  99. package/src/components/Brush/MiniChartPreview.tsx +133 -21
  100. package/src/components/EditorPanel/EditorPanel.tsx +81 -54
  101. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +67 -29
  102. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +0 -78
  103. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +120 -2
  104. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +25 -43
  105. package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
  106. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +83 -3
  107. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +66 -43
  108. package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
  109. package/src/components/EditorPanel/editor-panel.scss +1 -1
  110. package/src/components/EditorPanel/useEditorPermissions.ts +55 -26
  111. package/src/components/ForestPlot/ForestPlot.tsx +26 -22
  112. package/src/components/HorizonChart/HorizonChart.tsx +131 -0
  113. package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
  114. package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
  115. package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
  116. package/src/components/HorizonChart/index.tsx +3 -0
  117. package/src/components/Legend/Legend.Component.tsx +52 -4
  118. package/src/components/Legend/Legend.tsx +1 -1
  119. package/src/components/Legend/LegendGroup/LegendGroup.styles.css +4 -4
  120. package/src/components/Legend/LegendValueRange.tsx +77 -0
  121. package/src/components/Legend/helpers/createFormatLabels.tsx +16 -2
  122. package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
  123. package/src/components/LineChart/helpers/README.md +292 -0
  124. package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
  125. package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
  126. package/src/components/LineChart/index.tsx +44 -8
  127. package/src/components/LinearChart/README.md +109 -0
  128. package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
  129. package/src/components/LinearChart/linearChart.constants.ts +84 -0
  130. package/src/components/LinearChart/tests/LinearChart.test.tsx +278 -0
  131. package/src/components/LinearChart/tests/mockConfigContext.ts +131 -0
  132. package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
  133. package/src/components/LinearChart.tsx +268 -1057
  134. package/src/components/PieChart/PieChart.tsx +20 -5
  135. package/src/components/RadarChart/RadarAxis.tsx +78 -0
  136. package/src/components/RadarChart/RadarChart.tsx +298 -0
  137. package/src/components/RadarChart/RadarGrid.tsx +64 -0
  138. package/src/components/RadarChart/RadarPolygon.tsx +91 -0
  139. package/src/components/RadarChart/helpers.ts +83 -0
  140. package/src/components/RadarChart/index.tsx +3 -0
  141. package/src/components/Regions/components/Regions.tsx +6 -6
  142. package/src/components/Sankey/components/Sankey.tsx +3 -3
  143. package/src/components/Sankey/sankey.scss +1 -1
  144. package/src/components/SmallMultiples/SmallMultiples.css +5 -5
  145. package/src/components/Sparkline/index.scss +4 -2
  146. package/src/components/WarmingStripes/WarmingStripes.tsx +95 -25
  147. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +8 -8
  148. package/src/data/initial-state.js +37 -15
  149. package/src/data/legacy-defaults.ts +18 -0
  150. package/src/helpers/abbreviateNumber.ts +24 -17
  151. package/src/helpers/getChartPatternId.ts +17 -0
  152. package/src/helpers/getExcludedData.ts +4 -0
  153. package/src/helpers/getMinMax.ts +16 -2
  154. package/src/helpers/handleChartAriaLabels.ts +19 -19
  155. package/src/helpers/handleLineType.ts +22 -18
  156. package/src/helpers/seriesColumnSettings.ts +114 -0
  157. package/src/helpers/tests/countNumOfTicks.test.ts +77 -0
  158. package/src/helpers/tests/seriesColumnSettings.test.ts +84 -0
  159. package/src/hooks/useProgrammaticTooltip.ts +23 -2
  160. package/src/hooks/useRightAxis.ts +14 -0
  161. package/src/hooks/useScales.ts +99 -56
  162. package/src/hooks/useTooltip.tsx +23 -3
  163. package/src/scss/main.scss +157 -79
  164. package/src/selectors/README.md +68 -0
  165. package/src/store/chart.reducer.ts +2 -0
  166. package/src/test/CdcChart.test.jsx +2 -2
  167. package/src/types/ChartConfig.ts +22 -0
  168. package/src/types/ChartContext.ts +1 -0
  169. package/src/types/Horizon.ts +64 -0
  170. package/tests/fixtures/chart-config-with-metadata.json +29 -0
  171. package/tests/fixtures/data-with-metadata.json +10 -0
  172. package/preview.html +0 -1616
  173. package/src/components/Annotations/components/helpers/index.tsx +0 -46
@@ -0,0 +1,1085 @@
1
+ {
2
+ "annotations": [],
3
+ "type": "chart",
4
+ "debugSvg": false,
5
+ "chartMessage": {
6
+ "noData": "No Data Available"
7
+ },
8
+ "title": "",
9
+ "showTitle": true,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "fontSize": "medium",
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
+ "showDownloadButton": false
32
+ },
33
+ "padding": {
34
+ "left": 5,
35
+ "right": 5
36
+ },
37
+ "preliminaryData": [
38
+ {
39
+ "type": "effect",
40
+ "seriesKey": "COVID-19",
41
+ "label": "Less than 80% of hospitals reporting",
42
+ "column": "reporting_above_80_percent",
43
+ "value": "False",
44
+ "style": "Open Circles",
45
+ "displayTooltip": true,
46
+ "displayLegend": true,
47
+ "displayTable": true,
48
+ "symbol": "",
49
+ "iconCode": "",
50
+ "lineCode": "◯",
51
+ "hideBarSymbol": false,
52
+ "hideLineStyle": false,
53
+ "circleSize": 6,
54
+ "displayGray": true
55
+ },
56
+ {
57
+ "type": "effect",
58
+ "seriesKey": "Influenza",
59
+ "label": "",
60
+ "column": "reporting_above_80_percent",
61
+ "value": "False",
62
+ "style": "Open Circles",
63
+ "displayTooltip": true,
64
+ "displayLegend": true,
65
+ "displayTable": true,
66
+ "symbol": "",
67
+ "iconCode": "",
68
+ "lineCode": "◯",
69
+ "hideBarSymbol": false,
70
+ "hideLineStyle": false,
71
+ "circleSize": 6,
72
+ "displayGray": true
73
+ },
74
+ {
75
+ "type": "effect",
76
+ "seriesKey": "RSV",
77
+ "label": "",
78
+ "column": "reporting_above_80_percent",
79
+ "value": "False",
80
+ "style": "Open Circles",
81
+ "displayTooltip": true,
82
+ "displayLegend": true,
83
+ "displayTable": true,
84
+ "symbol": "",
85
+ "iconCode": "",
86
+ "lineCode": "◯",
87
+ "hideBarSymbol": false,
88
+ "hideLineStyle": false,
89
+ "circleSize": 6,
90
+ "displayGray": true
91
+ }
92
+ ],
93
+ "yAxis": {
94
+ "hideAxis": true,
95
+ "displayNumbersOnBar": false,
96
+ "hideLabel": false,
97
+ "hideTicks": true,
98
+ "size": "30",
99
+ "gridLines": true,
100
+ "enablePadding": true,
101
+ "min": "",
102
+ "max": "",
103
+ "labelColor": "#333",
104
+ "tickLabelColor": "#333",
105
+ "tickColor": "#333",
106
+ "rightHideAxis": true,
107
+ "rightAxisSize": 0,
108
+ "rightLabel": "",
109
+ "rightLabelOffsetSize": 0,
110
+ "rightAxisLabelColor": "#333",
111
+ "rightAxisTickLabelColor": "#333",
112
+ "rightAxisTickColor": "#333",
113
+ "numTicks": "6",
114
+ "axisPadding": 0,
115
+ "scalePadding": "20",
116
+ "tickRotation": 0,
117
+ "anchors": [],
118
+ "shoMissingDataLabel": true,
119
+ "showMissingDataLine": true,
120
+ "categories": [],
121
+ "label": ""
122
+ },
123
+ "boxplot": {
124
+ "plots": [],
125
+ "borders": "true",
126
+ "plotOutlierValues": false,
127
+ "plotNonOutlierValues": true,
128
+ "labels": {
129
+ "q1": "Lower Quartile",
130
+ "q2": "q2",
131
+ "q3": "Upper Quartile",
132
+ "q4": "q4",
133
+ "minimum": "Minimum",
134
+ "maximum": "Maximum",
135
+ "mean": "Mean",
136
+ "median": "Median",
137
+ "sd": "Standard Deviation",
138
+ "iqr": "Interquartile Range",
139
+ "total": "Total",
140
+ "outliers": "Outliers",
141
+ "values": "Values",
142
+ "lowerBounds": "Lower Bounds",
143
+ "upperBounds": "Upper Bounds",
144
+ "count": "Count"
145
+ },
146
+ "firstQuartilePercentage": 25,
147
+ "thirdQuartilePercentage": 75,
148
+ "boxWidthPercentage": 40,
149
+ "legend": {
150
+ "showHowToReadText": false,
151
+ "howToReadText": ""
152
+ }
153
+ },
154
+ "topAxis": {
155
+ "hasLine": false
156
+ },
157
+ "isLegendValue": false,
158
+ "barThickness": 0.35,
159
+ "barHeight": 25,
160
+ "barSpace": 15,
161
+ "heights": {
162
+ "vertical": "250",
163
+ "horizontal": 750,
164
+ "mobileVertical": "150"
165
+ },
166
+ "xAxis": {
167
+ "sortDates": false,
168
+ "anchors": [],
169
+ "type": "date-time",
170
+ "showTargetLabel": true,
171
+ "targetLabel": "Target",
172
+ "hideAxis": false,
173
+ "hideLabel": false,
174
+ "hideTicks": false,
175
+ "size": "110",
176
+ "tickRotation": "",
177
+ "min": "",
178
+ "max": "",
179
+ "labelColor": "#333",
180
+ "tickLabelColor": "#333",
181
+ "tickColor": "#333",
182
+ "numTicks": "6",
183
+ "labelOffset": 0,
184
+ "axisPadding": 0,
185
+ "target": 0,
186
+ "maxTickRotation": 0,
187
+ "padding": "0",
188
+ "showYearsOnce": true,
189
+ "sortByRecentDate": false,
190
+ "dataKey": "week_end",
191
+ "dateParseFormat": "%Y-%m-%d",
192
+ "dateDisplayFormat": "%b. %Y",
193
+ "label": "",
194
+ "tickWidthMax": 71,
195
+ "axisBBox": 29.193334579467773,
196
+ "manual": false,
197
+ "viewportNumTicks": {
198
+ "xs": "4",
199
+ "xxs": "4"
200
+ }
201
+ },
202
+ "table": {
203
+ "label": "Data Table",
204
+ "expanded": false,
205
+ "limitHeight": false,
206
+ "height": "",
207
+ "caption": "",
208
+ "showDownloadUrl": false,
209
+ "showDataTableLink": true,
210
+ "showDownloadLinkBelow": true,
211
+ "indexLabel": "Week Ending",
212
+ "download": true,
213
+ "showVertical": true,
214
+ "dateDisplayFormat": "%B %-d, %Y",
215
+ "showMissingDataLabel": true,
216
+ "showSuppressedSymbol": true,
217
+ "show": true
218
+ },
219
+ "orientation": "vertical",
220
+ "color": "pinkpurple",
221
+ "columns": {
222
+ "percent_hospitals_reporting": {
223
+ "label": "Percent of Hospitals Reporting",
224
+ "dataTable": true,
225
+ "tooltips": true,
226
+ "prefix": "",
227
+ "suffix": "%",
228
+ "forestPlot": false,
229
+ "startingPoint": "0",
230
+ "forestPlotAlignRight": false,
231
+ "roundToPlace": 0,
232
+ "commas": false,
233
+ "showInViz": false,
234
+ "forestPlotStartingPoint": 0,
235
+ "name": "percent_hospitals_reporting"
236
+ }
237
+ },
238
+ "legend": {
239
+ "hide": false,
240
+ "behavior": "isolate",
241
+ "axisAlign": true,
242
+ "singleRow": true,
243
+ "colorCode": "",
244
+ "reverseLabelOrder": false,
245
+ "description": "",
246
+ "dynamicLegend": false,
247
+ "dynamicLegendDefaultText": "Show All",
248
+ "dynamicLegendItemLimit": 5,
249
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
250
+ "dynamicLegendChartMessage": "Select Options from the Legend",
251
+ "label": "Respiratory Virus",
252
+ "lineMode": false,
253
+ "verticalSorted": false,
254
+ "highlightOnHover": false,
255
+ "hideSuppressedLabels": false,
256
+ "hideSuppressionLink": false,
257
+ "seriesHighlight": [],
258
+ "style": "lines",
259
+ "subStyle": "linear blocks",
260
+ "groupBy": "",
261
+ "shape": "circle",
262
+ "tickRotation": "",
263
+ "hideBorder": {
264
+ "side": false,
265
+ "topBottom": true
266
+ },
267
+ "position": "bottom"
268
+ },
269
+ "brush": {
270
+ "height": 25,
271
+ "active": false,
272
+ "data": [
273
+ {
274
+ "week_end": "2022-10-01",
275
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
276
+ "geography": "",
277
+ "COVID-19": "7.3",
278
+ "Influenza": "0.3"
279
+ },
280
+ {
281
+ "week_end": "2022-10-08",
282
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
283
+ "geography": "",
284
+ "COVID-19": "7.1",
285
+ "Influenza": "0.4"
286
+ },
287
+ {
288
+ "week_end": "2022-10-15",
289
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
290
+ "geography": "",
291
+ "COVID-19": "6.9",
292
+ "Influenza": "0.5"
293
+ },
294
+ {
295
+ "week_end": "2022-10-22",
296
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
297
+ "geography": "",
298
+ "COVID-19": "6.9",
299
+ "Influenza": "0.7"
300
+ },
301
+ {
302
+ "week_end": "2022-10-29",
303
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
304
+ "geography": "",
305
+ "COVID-19": "7.0",
306
+ "Influenza": "1.2"
307
+ },
308
+ {
309
+ "week_end": "2022-11-05",
310
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
311
+ "geography": "",
312
+ "COVID-19": "7.1",
313
+ "Influenza": "1.9"
314
+ },
315
+ {
316
+ "week_end": "2022-11-12",
317
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
318
+ "geography": "",
319
+ "COVID-19": "7.2",
320
+ "Influenza": "2.5"
321
+ },
322
+ {
323
+ "week_end": "2022-11-19",
324
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
325
+ "geography": "",
326
+ "COVID-19": "7.3",
327
+ "Influenza": "3.2"
328
+ },
329
+ {
330
+ "week_end": "2022-11-26",
331
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
332
+ "geography": "",
333
+ "COVID-19": "8.0",
334
+ "Influenza": "5.4"
335
+ },
336
+ {
337
+ "week_end": "2022-12-03",
338
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
339
+ "geography": "",
340
+ "COVID-19": "10.2",
341
+ "Influenza": "7.9"
342
+ },
343
+ {
344
+ "week_end": "2022-12-10",
345
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
346
+ "geography": "",
347
+ "COVID-19": "10.5",
348
+ "Influenza": "7.1"
349
+ },
350
+ {
351
+ "week_end": "2022-12-17",
352
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
353
+ "geography": "",
354
+ "COVID-19": "11.0",
355
+ "Influenza": "6.4"
356
+ },
357
+ {
358
+ "week_end": "2022-12-24",
359
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
360
+ "geography": "",
361
+ "COVID-19": "11.8",
362
+ "Influenza": "5.9"
363
+ },
364
+ {
365
+ "week_end": "2022-12-31",
366
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
367
+ "geography": "",
368
+ "COVID-19": "13.4",
369
+ "Influenza": "5.8"
370
+ },
371
+ {
372
+ "week_end": "2023-01-07",
373
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
374
+ "geography": "",
375
+ "COVID-19": "13.4",
376
+ "Influenza": "4.2"
377
+ },
378
+ {
379
+ "week_end": "2023-01-14",
380
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
381
+ "geography": "",
382
+ "COVID-19": "11.3",
383
+ "Influenza": "2.2"
384
+ },
385
+ {
386
+ "week_end": "2023-01-21",
387
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
388
+ "geography": "",
389
+ "COVID-19": "9.5",
390
+ "Influenza": "1.3"
391
+ },
392
+ {
393
+ "week_end": "2023-01-28",
394
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
395
+ "geography": "",
396
+ "COVID-19": "8.5",
397
+ "Influenza": "0.9"
398
+ },
399
+ {
400
+ "week_end": "2023-02-04",
401
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
402
+ "geography": "",
403
+ "COVID-19": "8.0",
404
+ "Influenza": "0.7"
405
+ },
406
+ {
407
+ "week_end": "2023-02-11",
408
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
409
+ "geography": "",
410
+ "COVID-19": "8.0",
411
+ "Influenza": "0.7"
412
+ },
413
+ {
414
+ "week_end": "2023-02-18",
415
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
416
+ "geography": "",
417
+ "COVID-19": "7.7",
418
+ "Influenza": "0.6"
419
+ },
420
+ {
421
+ "week_end": "2023-02-25",
422
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
423
+ "geography": "",
424
+ "COVID-19": "7.3",
425
+ "Influenza": "0.5"
426
+ },
427
+ {
428
+ "week_end": "2023-03-04",
429
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
430
+ "geography": "",
431
+ "COVID-19": "6.7",
432
+ "Influenza": "0.4"
433
+ },
434
+ {
435
+ "week_end": "2023-03-11",
436
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
437
+ "geography": "",
438
+ "COVID-19": "6.1",
439
+ "Influenza": "0.4"
440
+ },
441
+ {
442
+ "week_end": "2023-03-18",
443
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
444
+ "geography": "",
445
+ "COVID-19": "5.5",
446
+ "Influenza": "0.4"
447
+ },
448
+ {
449
+ "week_end": "2023-03-25",
450
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
451
+ "geography": "",
452
+ "COVID-19": "5.2",
453
+ "Influenza": "0.4"
454
+ },
455
+ {
456
+ "week_end": "2023-04-01",
457
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
458
+ "geography": "",
459
+ "COVID-19": "4.8",
460
+ "Influenza": "0.4"
461
+ },
462
+ {
463
+ "week_end": "2023-04-08",
464
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
465
+ "geography": "",
466
+ "COVID-19": "4.4",
467
+ "Influenza": "0.4"
468
+ },
469
+ {
470
+ "week_end": "2023-04-15",
471
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
472
+ "geography": "",
473
+ "COVID-19": "4.0",
474
+ "Influenza": "0.3"
475
+ },
476
+ {
477
+ "week_end": "2023-04-22",
478
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
479
+ "geography": "",
480
+ "COVID-19": "3.6",
481
+ "Influenza": "0.3"
482
+ },
483
+ {
484
+ "week_end": "2023-04-29",
485
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
486
+ "geography": "",
487
+ "COVID-19": "3.1",
488
+ "Influenza": "0.3"
489
+ },
490
+ {
491
+ "week_end": "2023-05-06",
492
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
493
+ "geography": "",
494
+ "COVID-19": "2.9",
495
+ "Influenza": "0.3"
496
+ },
497
+ {
498
+ "week_end": "2023-05-13",
499
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
500
+ "geography": "",
501
+ "COVID-19": "2.8",
502
+ "Influenza": "0.3"
503
+ },
504
+ {
505
+ "week_end": "2023-05-20",
506
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
507
+ "geography": "",
508
+ "COVID-19": "2.5",
509
+ "Influenza": "0.3"
510
+ },
511
+ {
512
+ "week_end": "2023-05-27",
513
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
514
+ "geography": "",
515
+ "COVID-19": "2.4",
516
+ "Influenza": "0.3"
517
+ },
518
+ {
519
+ "week_end": "2023-06-03",
520
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
521
+ "geography": "",
522
+ "COVID-19": "2.2",
523
+ "Influenza": "0.3"
524
+ },
525
+ {
526
+ "week_end": "2023-06-10",
527
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
528
+ "geography": "",
529
+ "COVID-19": "2.1",
530
+ "Influenza": "0.3"
531
+ },
532
+ {
533
+ "week_end": "2023-06-17",
534
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
535
+ "geography": "",
536
+ "COVID-19": "2.0",
537
+ "Influenza": "0.3"
538
+ },
539
+ {
540
+ "week_end": "2023-06-24",
541
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
542
+ "geography": "",
543
+ "COVID-19": "1.9",
544
+ "Influenza": "0.2"
545
+ },
546
+ {
547
+ "week_end": "2023-07-01",
548
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
549
+ "geography": "",
550
+ "COVID-19": "2.0",
551
+ "Influenza": "0.2"
552
+ },
553
+ {
554
+ "week_end": "2023-07-08",
555
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
556
+ "geography": "",
557
+ "COVID-19": "1.9",
558
+ "Influenza": "0.2"
559
+ },
560
+ {
561
+ "week_end": "2023-07-15",
562
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
563
+ "geography": "",
564
+ "COVID-19": "2.2",
565
+ "Influenza": "0.2"
566
+ },
567
+ {
568
+ "week_end": "2023-07-22",
569
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
570
+ "geography": "",
571
+ "COVID-19": "2.4",
572
+ "Influenza": "0.2"
573
+ },
574
+ {
575
+ "week_end": "2023-07-29",
576
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
577
+ "geography": "",
578
+ "COVID-19": "2.7",
579
+ "Influenza": "0.2"
580
+ },
581
+ {
582
+ "week_end": "2023-08-05",
583
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
584
+ "geography": "",
585
+ "COVID-19": "3.2",
586
+ "Influenza": "0.2"
587
+ },
588
+ {
589
+ "week_end": "2023-08-12",
590
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
591
+ "geography": "",
592
+ "COVID-19": "3.8",
593
+ "Influenza": "0.2"
594
+ },
595
+ {
596
+ "week_end": "2023-08-19",
597
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
598
+ "geography": "",
599
+ "COVID-19": "4.5",
600
+ "Influenza": "0.2"
601
+ },
602
+ {
603
+ "week_end": "2023-08-26",
604
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
605
+ "geography": "",
606
+ "COVID-19": "5.3",
607
+ "Influenza": "0.2"
608
+ },
609
+ {
610
+ "week_end": "2023-09-02",
611
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
612
+ "geography": "",
613
+ "COVID-19": "5.8",
614
+ "Influenza": "0.3"
615
+ },
616
+ {
617
+ "week_end": "2023-09-09",
618
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
619
+ "geography": "",
620
+ "COVID-19": "6.2",
621
+ "Influenza": "0.2"
622
+ },
623
+ {
624
+ "week_end": "2023-09-16",
625
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
626
+ "geography": "",
627
+ "COVID-19": "6.0",
628
+ "Influenza": "0.2"
629
+ },
630
+ {
631
+ "week_end": "2023-09-23",
632
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
633
+ "geography": "",
634
+ "COVID-19": "5.9",
635
+ "Influenza": "0.3"
636
+ },
637
+ {
638
+ "week_end": "2023-09-30",
639
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
640
+ "geography": "",
641
+ "COVID-19": "5.5",
642
+ "Influenza": "0.3"
643
+ },
644
+ {
645
+ "week_end": "2023-10-07",
646
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
647
+ "geography": "",
648
+ "COVID-19": "5.2",
649
+ "Influenza": "0.3"
650
+ },
651
+ {
652
+ "week_end": "2023-10-14",
653
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
654
+ "geography": "",
655
+ "COVID-19": "4.8",
656
+ "Influenza": "0.4"
657
+ },
658
+ {
659
+ "week_end": "2023-10-21",
660
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
661
+ "geography": "",
662
+ "COVID-19": "4.8",
663
+ "Influenza": "0.4"
664
+ },
665
+ {
666
+ "week_end": "2023-10-28",
667
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
668
+ "geography": "",
669
+ "COVID-19": "4.9",
670
+ "Influenza": "0.5"
671
+ },
672
+ {
673
+ "week_end": "2023-11-04",
674
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
675
+ "geography": "",
676
+ "COVID-19": "4.5",
677
+ "Influenza": "0.6"
678
+ },
679
+ {
680
+ "week_end": "2023-11-11",
681
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
682
+ "geography": "",
683
+ "COVID-19": "5.0",
684
+ "Influenza": "0.8"
685
+ },
686
+ {
687
+ "week_end": "2023-11-18",
688
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
689
+ "geography": "",
690
+ "COVID-19": "5.4",
691
+ "Influenza": "1.0"
692
+ },
693
+ {
694
+ "week_end": "2023-11-25",
695
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
696
+ "geography": "",
697
+ "COVID-19": "5.8",
698
+ "Influenza": "1.3"
699
+ },
700
+ {
701
+ "week_end": "2023-12-02",
702
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
703
+ "geography": "",
704
+ "COVID-19": "6.9",
705
+ "Influenza": "1.7"
706
+ },
707
+ {
708
+ "week_end": "2023-12-09",
709
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
710
+ "geography": "",
711
+ "COVID-19": "7.0",
712
+ "Influenza": "2.2"
713
+ },
714
+ {
715
+ "week_end": "2023-12-16",
716
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
717
+ "geography": "",
718
+ "COVID-19": "7.6",
719
+ "Influenza": "3.0"
720
+ },
721
+ {
722
+ "week_end": "2023-12-23",
723
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
724
+ "geography": "",
725
+ "COVID-19": "8.9",
726
+ "Influenza": "4.6"
727
+ },
728
+ {
729
+ "week_end": "2023-12-30",
730
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
731
+ "geography": "",
732
+ "COVID-19": "10.5",
733
+ "Influenza": "6.3"
734
+ },
735
+ {
736
+ "week_end": "2024-01-06",
737
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
738
+ "geography": "",
739
+ "COVID-19": "10.5",
740
+ "Influenza": "5.7"
741
+ },
742
+ {
743
+ "week_end": "2024-01-13",
744
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
745
+ "geography": "",
746
+ "COVID-19": "9.3",
747
+ "Influenza": "4.6"
748
+ },
749
+ {
750
+ "week_end": "2024-01-20",
751
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
752
+ "geography": "",
753
+ "COVID-19": "7.6",
754
+ "Influenza": "3.8"
755
+ },
756
+ {
757
+ "week_end": "2024-01-27",
758
+ "**Numeric Value Property**": "new_admissions_100k_currentweek",
759
+ "geography": "",
760
+ "COVID-19": "6.8",
761
+ "Influenza": "3.7"
762
+ }
763
+ ],
764
+ "pattern_id": "brush_pattern",
765
+ "accent_color": "#ddd"
766
+ },
767
+ "exclusions": {
768
+ "active": false,
769
+ "keys": []
770
+ },
771
+ "palette": "qualitative-bold",
772
+ "isPaletteReversed": false,
773
+ "twoColor": {
774
+ "palette": "monochrome-1",
775
+ "isPaletteReversed": false
776
+ },
777
+ "labels": false,
778
+ "dataFormat": {
779
+ "commas": false,
780
+ "prefix": "",
781
+ "suffix": " hospitalizations per 100,000 people",
782
+ "abbreviated": true,
783
+ "bottomSuffix": "",
784
+ "bottomPrefix": "",
785
+ "bottomAbbreviated": false,
786
+ "roundTo": "1",
787
+ "onlyShowTopPrefixSuffix": true
788
+ },
789
+ "confidenceKeys": {},
790
+ "visual": {
791
+ "border": true,
792
+ "accent": true,
793
+ "background": true,
794
+ "verticalHoverLine": true,
795
+ "horizontalHoverLine": false,
796
+ "lineDatapointSymbol": "none",
797
+ "maximumShapeAmount": 7
798
+ },
799
+ "useLogScale": false,
800
+ "filterBehavior": "Filter Change",
801
+ "highlightedBarValues": [],
802
+ "series": [
803
+ {
804
+ "dataKey": "COVID-19",
805
+ "type": "Line",
806
+ "axis": "Left",
807
+ "tooltip": true
808
+ },
809
+ {
810
+ "dataKey": "Influenza",
811
+ "type": "Line",
812
+ "axis": "Left",
813
+ "tooltip": true
814
+ },
815
+ {
816
+ "dataKey": "RSV",
817
+ "type": "Line",
818
+ "axis": "Left",
819
+ "tooltip": true
820
+ }
821
+ ],
822
+ "tooltips": {
823
+ "opacity": 90,
824
+ "singleSeries": false,
825
+ "dateDisplayFormat": "%B %-d, %Y"
826
+ },
827
+ "forestPlot": {
828
+ "startAt": 0,
829
+ "colors": {
830
+ "line": "",
831
+ "shape": ""
832
+ },
833
+ "lineOfNoEffect": {
834
+ "show": true
835
+ },
836
+ "type": "",
837
+ "pooledResult": {
838
+ "diamondHeight": 5,
839
+ "column": ""
840
+ },
841
+ "estimateField": "",
842
+ "estimateRadius": "",
843
+ "shape": "",
844
+ "rowHeight": 20,
845
+ "description": {
846
+ "show": true,
847
+ "text": "description",
848
+ "location": 0
849
+ },
850
+ "result": {
851
+ "show": true,
852
+ "text": "result",
853
+ "location": 100
854
+ },
855
+ "radius": {
856
+ "min": 1,
857
+ "max": 8,
858
+ "scalingColumn": ""
859
+ },
860
+ "regression": {
861
+ "lower": 0,
862
+ "upper": 0,
863
+ "estimateField": 0
864
+ },
865
+ "leftWidthOffset": 0,
866
+ "rightWidthOffset": 0,
867
+ "showZeroLine": false,
868
+ "leftLabel": "",
869
+ "rightLabel": "",
870
+ "hideDateCategoryCol": false,
871
+ "width": "auto",
872
+ "lowerCiField": "",
873
+ "upperCiField": ""
874
+ },
875
+ "area": {
876
+ "isStacked": false
877
+ },
878
+ "sankey": {
879
+ "title": {
880
+ "defaultColor": "black"
881
+ },
882
+ "iterations": 1,
883
+ "rxValue": 0.9,
884
+ "overallSize": {
885
+ "width": 900,
886
+ "height": 700
887
+ },
888
+ "margin": {
889
+ "margin_y": 25,
890
+ "margin_x": 0
891
+ },
892
+ "nodeSize": {
893
+ "nodeWidth": 26,
894
+ "nodeHeight": 40
895
+ },
896
+ "nodePadding": 55,
897
+ "nodeFontColor": "black",
898
+ "nodeColor": {
899
+ "default": "#ff8500",
900
+ "inactive": "#808080"
901
+ },
902
+ "linkColor": {
903
+ "default": "#ffc900",
904
+ "inactive": "#D3D3D3"
905
+ },
906
+ "opacity": {
907
+ "nodeOpacityDefault": 1,
908
+ "nodeOpacityInactive": 0.1,
909
+ "LinkOpacityDefault": 1,
910
+ "LinkOpacityInactive": 0.1
911
+ },
912
+ "storyNodeFontColor": "#006778",
913
+ "storyNodeText": [],
914
+ "nodeValueStyle": {
915
+ "textBefore": "(",
916
+ "textAfter": ")"
917
+ },
918
+ "data": []
919
+ },
920
+ "suppressedData": [],
921
+ "showChartBrush": false,
922
+ "visualizationType": "Line",
923
+ "customColors": ["#f06f19", "#0a58d6", "#890664", "#000000", "#0A6C75", "#C0F2FD", "#C0F2FD", "#C0F2FD", "#C0F2FD"],
924
+ "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNWeeklyHospitalRate.json",
925
+ "dataFileSourceType": "url",
926
+ "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNWeeklyHospitalRate.json",
927
+ "dataDescription": {
928
+ "horizontal": false,
929
+ "series": true,
930
+ "singleRow": false,
931
+ "seriesKey": "pathogen",
932
+ "xKey": "week_end",
933
+ "valueKeys": ["new_admissions_100k_currentweek"],
934
+ "ignoredKeys": [
935
+ "new_admissions_selected_pathogen_previousweek",
936
+ "new_admissions_100k_previousweek",
937
+ "percent_change_admissions_per100k",
938
+ "percent_change_admissions",
939
+ "new_admissions_selected_pathogen_currentweek"
940
+ ]
941
+ },
942
+ "validated": "4.24.3",
943
+ "filters": [
944
+ {
945
+ "values": [
946
+ "United States",
947
+ "Alabama",
948
+ "Alaska",
949
+ "American Samoa",
950
+ "Arizona",
951
+ "Arkansas",
952
+ "California",
953
+ "Colorado",
954
+ "Connecticut",
955
+ "Delaware",
956
+ "District of Columbia",
957
+ "Florida",
958
+ "Georgia",
959
+ "Guam",
960
+ "Hawaii",
961
+ "Idaho",
962
+ "Illinois",
963
+ "Indiana",
964
+ "Iowa",
965
+ "Kansas",
966
+ "Kentucky",
967
+ "Louisiana",
968
+ "Maine",
969
+ "Maryland",
970
+ "Massachusetts",
971
+ "Michigan",
972
+ "Minnesota",
973
+ "Mississippi",
974
+ "Missouri",
975
+ "Montana",
976
+ "Nebraska",
977
+ "Nevada",
978
+ "New Hampshire",
979
+ "New Jersey",
980
+ "New Mexico",
981
+ "New York",
982
+ "North Carolina",
983
+ "North Dakota",
984
+ "Ohio",
985
+ "Oklahoma",
986
+ "Oregon",
987
+ "Pennsylvania",
988
+ "Puerto Rico",
989
+ "Rhode Island",
990
+ "South Carolina",
991
+ "South Dakota",
992
+ "Tennessee",
993
+ "Texas",
994
+ "Utah",
995
+ "Vermont",
996
+ "Virginia",
997
+ "Virgin Islands",
998
+ "Washington",
999
+ "West Virginia",
1000
+ "Wisconsin",
1001
+ "Wyoming"
1002
+ ],
1003
+ "active": "United States",
1004
+ "filterStyle": "dropdown",
1005
+ "order": "cust",
1006
+ "columnName": "geography",
1007
+ "id": 1732556562584,
1008
+ "orderedValues": [
1009
+ "United States",
1010
+ "Alabama",
1011
+ "Alaska",
1012
+ "American Samoa",
1013
+ "Arizona",
1014
+ "Arkansas",
1015
+ "California",
1016
+ "Colorado",
1017
+ "Connecticut",
1018
+ "Delaware",
1019
+ "District of Columbia",
1020
+ "Florida",
1021
+ "Georgia",
1022
+ "Guam",
1023
+ "Hawaii",
1024
+ "Idaho",
1025
+ "Illinois",
1026
+ "Indiana",
1027
+ "Iowa",
1028
+ "Kansas",
1029
+ "Kentucky",
1030
+ "Louisiana",
1031
+ "Maine",
1032
+ "Maryland",
1033
+ "Massachusetts",
1034
+ "Michigan",
1035
+ "Minnesota",
1036
+ "Mississippi",
1037
+ "Missouri",
1038
+ "Montana",
1039
+ "Nebraska",
1040
+ "Nevada",
1041
+ "New Hampshire",
1042
+ "New Jersey",
1043
+ "New Mexico",
1044
+ "New York",
1045
+ "North Carolina",
1046
+ "North Dakota",
1047
+ "Ohio",
1048
+ "Oklahoma",
1049
+ "Oregon",
1050
+ "Pennsylvania",
1051
+ "Puerto Rico",
1052
+ "Rhode Island",
1053
+ "South Carolina",
1054
+ "South Dakota",
1055
+ "Tennessee",
1056
+ "Texas",
1057
+ "Utah",
1058
+ "Vermont",
1059
+ "Virginia",
1060
+ "Virgin Islands",
1061
+ "Washington",
1062
+ "West Virginia",
1063
+ "Wisconsin",
1064
+ "Wyoming"
1065
+ ],
1066
+ "setByQueryParameter": "geography"
1067
+ }
1068
+ ],
1069
+ "runtimeDataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNWeeklyHospitalRate.json",
1070
+ "dynamicMarginTop": 0,
1071
+ "description": "<div class=\"text-left\"><p class=\"fnote\">Data last updated on <span data-timestamp=\"NHSNWeeklyHospitalRate:Data_as_of\"></span> and presented through <span data-timestamp=\"NHSNWeeklyHospitalRate:Data_Presented_Through\"></span>. <a href=\"https://data.cdc.gov/Public-Health-Surveillance/Weekly-Hospital-Respiratory-Data-HRD-Metrics-by-Ju/ua7e-t2fy/about_data\">View this dataset</a> on data.cdc.gov.</p></div>",
1072
+ "regions": [
1073
+ {
1074
+ "background": "#777777",
1075
+ "from": "7",
1076
+ "to": "2024-01-13",
1077
+ "fromType": "Previous Days",
1078
+ "toType": "Last Date"
1079
+ }
1080
+ ],
1081
+ "version": "4.25.1",
1082
+ "migrations": {
1083
+ "addColorMigration": true
1084
+ }
1085
+ }