@cdc/dashboard 4.26.3 → 4.26.5

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 (151) hide show
  1. package/CONFIG.md +219 -0
  2. package/README.md +60 -20
  3. package/dist/cdcdashboard-CY9IcPSi.es.js +6 -0
  4. package/dist/cdcdashboard-DlpiY3fQ.es.js +4 -0
  5. package/dist/cdcdashboard.js +61559 -58048
  6. package/examples/__data__/data-2.json +6 -0
  7. package/examples/__data__/data.json +6 -0
  8. package/examples/dashboard-conditions-filters-incomplete.json +221 -0
  9. package/examples/dashboard-missing-datasets-multi.json +174 -0
  10. package/examples/dashboard-missing-datasets-single.json +121 -0
  11. package/examples/dashboard-multi-dashboard-version-regression.json +146 -0
  12. package/examples/dashboard-shared-filter-row-delete-cleanup.json +186 -0
  13. package/examples/dashboard-stale-dataset-keys.json +181 -0
  14. package/examples/dashboard-tiered-filter-regression.json +190 -0
  15. package/examples/legend-issue.json +1 -1
  16. package/examples/minimal-example.json +34 -0
  17. package/examples/private/cfa-dashboard.json +651 -0
  18. package/examples/private/data-bite-wrap.json +6936 -0
  19. package/examples/private/dengue.json +4640 -0
  20. package/examples/private/link_to_file.json +16662 -0
  21. package/examples/private/multi-dash-fix.json +16963 -0
  22. package/examples/private/versions.json +41612 -0
  23. package/examples/sankey.json +3 -3
  24. package/examples/test-api-filter-reset.json +4 -4
  25. package/examples/tp5-test.json +86 -4
  26. package/examples/us-map-filter-example.json +1074 -0
  27. package/package.json +9 -9
  28. package/src/CdcDashboard.tsx +6 -2
  29. package/src/CdcDashboardComponent.tsx +179 -88
  30. package/src/DashboardCopyPasteContext.test.tsx +33 -0
  31. package/src/DashboardCopyPasteContext.tsx +48 -0
  32. package/src/_stories/Dashboard.EditorRegression.stories.tsx +72 -0
  33. package/src/_stories/Dashboard.Regression.stories.tsx +196 -0
  34. package/src/_stories/Dashboard.Zoom.stories.tsx +88 -0
  35. package/src/_stories/Dashboard.smoke.stories.tsx +33 -0
  36. package/src/_stories/Dashboard.stories.tsx +337 -2
  37. package/src/_stories/FilteredTextMigrationComparison.stories.tsx +87 -0
  38. package/src/_stories/_mock/dashboard-data-driven-colors.json +171 -0
  39. package/src/_stories/_mock/tp5-test.json +86 -5
  40. package/src/components/Column.test.tsx +176 -0
  41. package/src/components/Column.tsx +214 -13
  42. package/src/components/DashboardConditionModal.test.tsx +420 -0
  43. package/src/components/DashboardConditionModal.tsx +367 -0
  44. package/src/components/DashboardConditionSummary.tsx +59 -0
  45. package/src/components/DashboardEditors.tsx +23 -0
  46. package/src/components/DashboardFilters/DashboardFilters.test.tsx +267 -0
  47. package/src/components/DashboardFilters/DashboardFilters.tsx +193 -172
  48. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.test.tsx +164 -0
  49. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +46 -6
  50. package/src/components/DashboardFilters/DashboardFiltersEditor/components/APIModal.tsx +5 -3
  51. package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +59 -58
  52. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +304 -0
  53. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +43 -36
  54. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +2 -2
  55. package/src/components/DashboardFilters/DashboardFiltersWrapper.test.tsx +142 -0
  56. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +32 -27
  57. package/src/components/DashboardFilters/dashboardfilter.styles.css +42 -27
  58. package/src/components/DataDesignerModal.tsx +2 -1
  59. package/src/components/ExpandCollapseButtons.tsx +6 -4
  60. package/src/components/Grid.tsx +12 -7
  61. package/src/components/Header/Header.tsx +36 -17
  62. package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +141 -140
  63. package/src/components/Row.test.tsx +228 -0
  64. package/src/components/Row.tsx +104 -28
  65. package/src/components/VisualizationRow.test.tsx +396 -0
  66. package/src/components/VisualizationRow.tsx +177 -51
  67. package/src/components/VisualizationsPanel/VisualizationsPanel.test.tsx +49 -0
  68. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +14 -13
  69. package/src/components/Widget/Widget.test.tsx +218 -0
  70. package/src/components/Widget/Widget.tsx +123 -20
  71. package/src/components/Widget/widget.styles.css +58 -14
  72. package/src/components/dashboard-condition-modal.css +76 -0
  73. package/src/components/dashboard-condition-summary.css +87 -0
  74. package/src/data/initial-state.js +1 -0
  75. package/src/helpers/addValuesToDashboardFilters.ts +3 -5
  76. package/src/helpers/addVisualization.ts +17 -4
  77. package/src/helpers/cloneDashboardWidget.ts +127 -0
  78. package/src/helpers/dashboardColumnWidgets.ts +99 -0
  79. package/src/helpers/dashboardConditionUi.ts +47 -0
  80. package/src/helpers/dashboardConditions.ts +200 -0
  81. package/src/helpers/dashboardFilterTargets.ts +156 -0
  82. package/src/helpers/filterData.ts +4 -9
  83. package/src/helpers/filterVisibility.ts +20 -0
  84. package/src/helpers/formatConfigBeforeSave.ts +2 -2
  85. package/src/helpers/getFilteredData.ts +18 -5
  86. package/src/helpers/getUpdateConfig.ts +43 -12
  87. package/src/helpers/getVizRowColumnLocator.ts +11 -1
  88. package/src/helpers/iconHash.tsx +9 -3
  89. package/src/helpers/mapDataToConfig.ts +31 -29
  90. package/src/helpers/reloadURLHelpers.ts +25 -5
  91. package/src/helpers/removeDashboardFilter.ts +33 -33
  92. package/src/helpers/tests/addVisualization.test.ts +53 -9
  93. package/src/helpers/tests/cloneDashboardWidget.test.ts +136 -0
  94. package/src/helpers/tests/dashboardColumnWidgets.test.ts +99 -0
  95. package/src/helpers/tests/dashboardConditionUi.test.ts +41 -0
  96. package/src/helpers/tests/dashboardConditions.test.ts +428 -0
  97. package/src/helpers/tests/formatConfigBeforeSave.test.ts +51 -0
  98. package/src/helpers/tests/getFilteredData.test.ts +265 -86
  99. package/src/helpers/tests/getUpdateConfig.test.ts +338 -0
  100. package/src/helpers/tests/reloadURLHelpers.test.ts +394 -238
  101. package/src/index.tsx +6 -3
  102. package/src/scss/grid.scss +281 -22
  103. package/src/scss/main.scss +215 -64
  104. package/src/store/dashboard.actions.ts +17 -4
  105. package/src/store/dashboard.reducer.test.ts +538 -0
  106. package/src/store/dashboard.reducer.ts +136 -22
  107. package/src/test/CdcDashboard.test.jsx +24 -0
  108. package/src/test/CdcDashboard.test.tsx +148 -0
  109. package/src/test/CdcDashboardComponent.test.tsx +935 -2
  110. package/src/types/ConfigRow.ts +15 -0
  111. package/src/types/DashboardFilters.ts +4 -0
  112. package/src/types/SharedFilter.ts +2 -0
  113. package/tests/fixtures/dashboard-config-with-metadata.json +1 -1
  114. package/dist/cdcdashboard-vr9HZwRt.es.js +0 -6
  115. package/examples/DEV-6574.json +0 -2224
  116. package/examples/api-dashboard-data.json +0 -272
  117. package/examples/api-dashboard-years.json +0 -11
  118. package/examples/api-geographies-data.json +0 -11
  119. package/examples/chart-data.json +0 -5409
  120. package/examples/custom/css/respiratory.css +0 -236
  121. package/examples/custom/js/respiratory.js +0 -242
  122. package/examples/default-data.json +0 -368
  123. package/examples/default-filter-control.json +0 -209
  124. package/examples/default-multi-dataset-shared-filter.json +0 -1729
  125. package/examples/default-multi-dataset.json +0 -506
  126. package/examples/ed-visits-county-file.json +0 -402
  127. package/examples/filters/Alabama.json +0 -72
  128. package/examples/filters/Alaska.json +0 -1737
  129. package/examples/filters/Arkansas.json +0 -4713
  130. package/examples/filters/California.json +0 -212
  131. package/examples/filters/Colorado.json +0 -1500
  132. package/examples/filters/Connecticut.json +0 -559
  133. package/examples/filters/Delaware.json +0 -63
  134. package/examples/filters/DistrictofColumbia.json +0 -63
  135. package/examples/filters/Florida.json +0 -4217
  136. package/examples/filters/States.json +0 -146
  137. package/examples/state-level.json +0 -90136
  138. package/examples/state-points.json +0 -10474
  139. package/examples/temp-example-data.json +0 -130
  140. package/examples/test-dashboard-simple.json +0 -503
  141. package/examples/test-example.json +0 -752
  142. package/examples/test-file.json +0 -147
  143. package/examples/test.json +0 -752
  144. package/examples/testing.json +0 -94456
  145. /package/examples/{data → __data__}/data-with-metadata.json +0 -0
  146. /package/examples/{legend-issue-data.json → __data__/legend-issue-data.json} +0 -0
  147. /package/examples/api-test/{categories.json → __data__/categories.json} +0 -0
  148. /package/examples/api-test/{chart-data.json → __data__/chart-data.json} +0 -0
  149. /package/examples/api-test/{topics.json → __data__/topics.json} +0 -0
  150. /package/examples/api-test/{years.json → __data__/years.json} +0 -0
  151. /package/src/_stories/{Dashboard.Pages.stories.tsx → Dashboard.Pages.smoke.stories.tsx} +0 -0
@@ -1,402 +0,0 @@
1
- {
2
- "dashboard": {
3
- "theme": "theme-blue",
4
- "sharedFilters": [
5
- {
6
- "key": "State",
7
- "type": "urlfilter",
8
- "columnName": "geography",
9
- "showDropdown": true,
10
- "usedBy": [
11
- "chart1701791122773",
12
- "filtered-text1701791173259",
13
- "filtered-text1701791674571",
14
- "filtered-text1701791683990"
15
- ],
16
- "tier": 1,
17
- "datasetKey": "resp-data.json",
18
- "filterBy": "File Name",
19
- "fileName": "NSSPSubState${query}",
20
- "apiFilter": {
21
- "apiEndpoint": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPGeographyReference.json",
22
- "valueSelector": "geography",
23
- "textSelector": "geography"
24
- },
25
- "whitespaceReplacement": "Remove Spaces"
26
- },
27
- {
28
- "key": "County",
29
- "type": "datafilter",
30
- "columnName": "county",
31
- "showDropdown": true,
32
- "usedBy": [
33
- "chart1701791122773",
34
- "filtered-text1701791173259",
35
- "filtered-text1701791674571",
36
- "filtered-text1701791683990",
37
- "filter-dropdowns1701792379133",
38
- "filtered-text1701888972205",
39
- "filtered-text1701888980655"
40
- ],
41
- "values": ["All"],
42
- "tier": 1,
43
- "parents": ["State"]
44
- }
45
- ]
46
- },
47
- "rows": [
48
- { "columns": [{ "width": 12, "widget": "filter-dropdowns1701792379133" }, { "equalHeight": false }, {}, {}] },
49
- {
50
- "columns": [
51
- { "width": 6, "widget": "filtered-text1701888972205" },
52
- { "equalHeight": false, "width": 6, "widget": "filtered-text1701888980655" },
53
- { "width": null },
54
- { "width": null }
55
- ]
56
- },
57
- { "columns": [{ "width": 12, "widget": "chart1701791122773" }, { "equalHeight": false }, {}, {}] }
58
- ],
59
- "visualizations": {
60
- "chart1701791122773": {
61
- "annotations": [],
62
- "type": "chart",
63
- "debugSvg": false,
64
- "chartMessage": { "noData": "No Data Available" },
65
- "title": "",
66
- "showTitle": false,
67
- "showDownloadMediaButton": false,
68
- "theme": "theme-blue",
69
- "animate": false,
70
- "fontSize": "medium",
71
- "lineDatapointStyle": "hover",
72
- "lineDatapointColor": "Same as Line",
73
- "barHasBorder": "false",
74
- "isLollipopChart": false,
75
- "lollipopShape": "circle",
76
- "lollipopColorStyle": "two-tone",
77
- "visualizationSubType": "regular",
78
- "barStyle": "flat",
79
- "roundingStyle": "standard",
80
- "tipRounding": "top",
81
- "isResponsiveTicks": false,
82
- "general": {
83
- "annotationDropdownText": "Annotations",
84
- "showDownloadButton": false,
85
- "showMissingDataLabel": true,
86
- "showSuppressedSymbol": true,
87
- "showZeroValueData": true,
88
- "hideNullValue": true,
89
- "showZeroValueDataLabel": true
90
- },
91
- "padding": { "left": 5, "right": 5 },
92
- "preliminaryData": [],
93
- "yAxis": {
94
- "hideAxis": true,
95
- "displayNumbersOnBar": false,
96
- "hideLabel": false,
97
- "hideTicks": true,
98
- "size": "20",
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": "5",
114
- "axisPadding": 0,
115
- "scalePadding": "20",
116
- "tickRotation": 0,
117
- "anchors": [],
118
- "shoMissingDataLabel": true,
119
- "showMissingDataLine": true,
120
- "categories": [],
121
- "label": "",
122
- "maxValue": 6.446000000000001
123
- },
124
- "boxplot": {
125
- "plots": [],
126
- "borders": "true",
127
- "firstQuartilePercentage": 25,
128
- "thirdQuartilePercentage": 75,
129
- "boxWidthPercentage": 40,
130
- "plotOutlierValues": false,
131
- "plotNonOutlierValues": true,
132
- "legend": { "showHowToReadText": false, "howToReadText": "" },
133
- "labels": {
134
- "q1": "Lower Quartile",
135
- "q2": "q2",
136
- "q3": "Upper Quartile",
137
- "q4": "q4",
138
- "minimum": "Minimum",
139
- "maximum": "Maximum",
140
- "mean": "Mean",
141
- "median": "Median",
142
- "sd": "Standard Deviation",
143
- "iqr": "Interquartile Range",
144
- "total": "Total",
145
- "outliers": "Outliers",
146
- "values": "Values",
147
- "lowerBounds": "Lower Bounds",
148
- "upperBounds": "Upper Bounds"
149
- }
150
- },
151
- "topAxis": { "hasLine": false },
152
- "isLegendValue": false,
153
- "barThickness": 0.35,
154
- "barHeight": 25,
155
- "barSpace": 15,
156
- "heights": { "vertical": "250", "horizontal": 750, "mobileVertical": "150" },
157
- "xAxis": {
158
- "sortDates": false,
159
- "anchors": [],
160
- "type": "date-time",
161
- "showTargetLabel": true,
162
- "targetLabel": "Target",
163
- "hideAxis": false,
164
- "hideLabel": false,
165
- "hideTicks": false,
166
- "size": "0",
167
- "tickRotation": 0,
168
- "min": "",
169
- "max": "",
170
- "labelColor": "#333",
171
- "tickLabelColor": "#333",
172
- "tickColor": "#333",
173
- "numTicks": "6",
174
- "labelOffset": 0,
175
- "axisPadding": 0,
176
- "target": 0,
177
- "maxTickRotation": "0",
178
- "padding": "0",
179
- "showYearsOnce": true,
180
- "dataKey": "week_end",
181
- "dateParseFormat": "%Y-%m-%d",
182
- "dateDisplayFormat": "%b. %Y",
183
- "label": "",
184
- "tickWidthMax": 40,
185
- "axisBBox": 25.360000610351562,
186
- "viewportNumTicks": { "xxs": "" }
187
- },
188
- "table": {
189
- "label": "Data Table",
190
- "expanded": false,
191
- "limitHeight": false,
192
- "height": "",
193
- "caption": "",
194
- "showDownloadUrl": false,
195
- "showDataTableLink": true,
196
- "showDownloadLinkBelow": true,
197
- "indexLabel": "Week Ending",
198
- "download": true,
199
- "showVertical": true,
200
- "dateDisplayFormat": "",
201
- "showMissingDataLabel": true,
202
- "showSuppressedSymbol": true,
203
- "show": true
204
- },
205
- "orientation": "vertical",
206
- "color": "pinkpurple",
207
- "columns": {},
208
- "legend": {
209
- "hide": false,
210
- "behavior": "isolate",
211
- "axisAlign": true,
212
- "singleRow": true,
213
- "colorCode": "",
214
- "reverseLabelOrder": false,
215
- "description": "",
216
- "dynamicLegend": false,
217
- "dynamicLegendDefaultText": "Show All",
218
- "dynamicLegendItemLimit": 5,
219
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
220
- "dynamicLegendChartMessage": "Select Options from the Legend",
221
- "label": "Respiratory Virus",
222
- "lineMode": false,
223
- "verticalSorted": false,
224
- "highlightOnHover": false,
225
- "hideSuppressedLabels": false,
226
- "hideSuppressionLink": false,
227
- "seriesHighlight": [],
228
- "style": "circles",
229
- "subStyle": "linear blocks",
230
- "tickRotation": "",
231
- "hideBorder": { "side": false, "topBottom": true },
232
- "position": "bottom"
233
- },
234
- "brush": { "height": 25, "active": false, "pattern_id": "brush_pattern", "accent_color": "#ddd" },
235
- "exclusions": { "active": false, "keys": [], "dateEnd": "2023-12-16" },
236
- "palette": "qualitative-bold",
237
- "isPaletteReversed": false,
238
- "twoColor": { "palette": "monochrome-1", "isPaletteReversed": false },
239
- "labels": false,
240
- "dataFormat": {
241
- "commas": false,
242
- "prefix": "",
243
- "suffix": "% of emergency department visits",
244
- "abbreviated": true,
245
- "bottomSuffix": "",
246
- "bottomPrefix": "",
247
- "bottomAbbreviated": false,
248
- "roundTo": "1",
249
- "onlyShowTopPrefixSuffix": true
250
- },
251
- "confidenceKeys": {},
252
- "visual": {
253
- "border": true,
254
- "accent": true,
255
- "background": true,
256
- "verticalHoverLine": true,
257
- "horizontalHoverLine": false
258
- },
259
- "useLogScale": false,
260
- "filterBehavior": "Filter Change",
261
- "highlightedBarValues": [],
262
- "series": [
263
- { "dataKey": "percent_visits_covid", "name": "COVID-19", "type": "Line", "axis": "Left", "tooltip": true },
264
- { "dataKey": "percent_visits_influenza", "name": "Influenza", "type": "Line", "axis": "Left", "tooltip": true },
265
- { "dataKey": "percent_visits_rsv", "name": "RSV", "type": "Line", "axis": "Left", "tooltip": true }
266
- ],
267
- "tooltips": { "opacity": 90, "singleSeries": false, "dateDisplayFormat": "%B %-d, %Y" },
268
- "forestPlot": {
269
- "startAt": 0,
270
- "colors": { "line": "", "shape": "" },
271
- "lineOfNoEffect": { "show": true },
272
- "type": "",
273
- "pooledResult": { "diamondHeight": 5, "column": "" },
274
- "estimateField": "",
275
- "estimateRadius": "",
276
- "shape": "",
277
- "rowHeight": 20,
278
- "description": { "show": true, "text": "description", "location": 0 },
279
- "result": { "show": true, "text": "result", "location": 100 },
280
- "radius": { "min": 1, "max": 8, "scalingColumn": "" },
281
- "regression": { "lower": 0, "upper": 0, "estimateField": 0 },
282
- "leftWidthOffset": 0,
283
- "rightWidthOffset": 0,
284
- "showZeroLine": false,
285
- "leftLabel": "",
286
- "rightLabel": "",
287
- "hideDateCategoryCol": false,
288
- "width": "auto",
289
- "lowerCiField": "",
290
- "upperCiField": ""
291
- },
292
- "area": { "isStacked": false },
293
- "sankey": {
294
- "title": { "defaultColor": "black" },
295
- "iterations": 1,
296
- "rxValue": 0.9,
297
- "overallSize": { "width": 900, "height": 700 },
298
- "margin": { "margin_y": 25, "margin_x": 0 },
299
- "nodeSize": { "nodeWidth": 26, "nodeHeight": 40 },
300
- "nodePadding": 55,
301
- "nodeFontColor": "black",
302
- "nodeColor": { "default": "#ff8500", "inactive": "#808080" },
303
- "linkColor": { "default": "#ffc900", "inactive": "#D3D3D3" },
304
- "opacity": {
305
- "nodeOpacityDefault": 1,
306
- "nodeOpacityInactive": 0.1,
307
- "LinkOpacityDefault": 1,
308
- "LinkOpacityInactive": 0.1
309
- },
310
- "storyNodeFontColor": "#006778",
311
- "storyNodeText": [],
312
- "nodeValueStyle": { "textBefore": "(", "textAfter": ")" },
313
- "data": []
314
- },
315
- "suppressedData": [],
316
- "showChartBrush": false,
317
- "datasets": {},
318
- "visualizationType": "Line",
319
- "dataKey": "resp-data.json",
320
- "customColors": ["#f06f19", "#0a58d6", "#890664", "#89bf13", "#94036f", "#87b6f9", "#867a77", "#000000"],
321
- "dataFileName": "/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined.json",
322
- "dataFileSourceType": "url",
323
- "validated": 4.23,
324
- "dynamicMarginTop": 0,
325
- "description": "<div class=\"text-left\">Data last updated on <span data-timestamp=\"EmergencyDepartmentVisitCombined:Data_as_of\"></span> and presented through <span data-timestamp=\"EmergencyDepartmentVisitCombined:Data_Presented_Through\"></span>. <a href=\"https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-NSSP-Emergency-Dep/rdmq-nq56\">View this dataset</a> on data.cdc.gov.</div>",
326
- "uid": "chart1701791122773",
327
- "dataDescription": { "horizontal": false, "series": false },
328
- "version": "4.24.10"
329
- },
330
- "filter-dropdowns1701792379133": {
331
- "newViz": true,
332
- "openModal": false,
333
- "uid": "filter-dropdowns1701792379133",
334
- "type": "dashboardFilters",
335
- "visualizationType": "dashboardFilters",
336
- "sharedFilterIndexes": [0, 1],
337
- "filterBehavior": "Filter Change"
338
- },
339
- "filtered-text1701888972205": {
340
- "title": "",
341
- "type": "filtered-text",
342
- "theme": "theme-blue",
343
- "fontSize": "medium",
344
- "shadow": false,
345
- "filters": [],
346
- "visual": {
347
- "hideBackgroundColor": false,
348
- "background": false,
349
- "roundedBorders": false,
350
- "accent": false,
351
- "border": false,
352
- "borderColorTheme": false
353
- },
354
- "openModal": false,
355
- "uid": "filtered-text1701888972205",
356
- "visualizationType": "filtered-text",
357
- "dataKey": "resp-data.json",
358
- "dataDescription": { "horizontal": false, "series": false },
359
- "validated": 4.23,
360
- "textColumn": "county_state",
361
- "version": "4.24.7"
362
- },
363
- "filtered-text1701888980655": {
364
- "title": "Counties included in this area",
365
- "type": "filtered-text",
366
- "theme": "theme-blue",
367
- "fontSize": "medium",
368
- "shadow": false,
369
- "filters": [],
370
- "visual": {
371
- "hideBackgroundColor": false,
372
- "background": false,
373
- "roundedBorders": false,
374
- "accent": false,
375
- "border": false,
376
- "borderColorTheme": false
377
- },
378
- "openModal": false,
379
- "uid": "filtered-text1701888980655",
380
- "visualizationType": "filtered-text",
381
- "dataKey": "resp-data.json",
382
- "dataDescription": { "horizontal": false, "series": false },
383
- "validated": 4.23,
384
- "textColumn": "hsa_counties",
385
- "version": "4.24.7"
386
- }
387
- },
388
- "table": { "label": "Data Table", "show": false, "showDownloadUrl": false, "showVertical": true },
389
- "datasets": {
390
- "resp-data.json": {
391
- "dataFileSize": 1159724,
392
- "dataFileName": "resp-data.json",
393
- "dataFileSourceType": "file",
394
- "dataFileFormat": "JSON",
395
- "preview": true,
396
- "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPSubStateUnitedStates.json"
397
- }
398
- },
399
- "type": "dashboard",
400
- "uuid": 1701888964970,
401
- "version": "4.24.10"
402
- }
@@ -1,72 +0,0 @@
1
- [{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.16","percent_visits_covid":"1.23","percent_visits_influenza":"0.51","percent_visits_rsv":"0.45","week_end":"2023-10-07"}
2
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.21","percent_visits_covid":"1.47","percent_visits_influenza":"0.42","percent_visits_rsv":"0.35","week_end":"2023-09-30"}
3
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.97","percent_visits_covid":"1.02","percent_visits_influenza":"1.26","percent_visits_rsv":"0.72","week_end":"2022-10-01"}
4
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.86","percent_visits_covid":"0.98","percent_visits_influenza":"2.33","percent_visits_rsv":"0.59","week_end":"2022-10-08"}
5
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.15","percent_visits_covid":"0.91","percent_visits_influenza":"3.73","percent_visits_rsv":"0.57","week_end":"2022-10-15"}
6
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.22","percent_visits_covid":"0.82","percent_visits_influenza":"6.01","percent_visits_rsv":"0.47","week_end":"2022-10-22"}
7
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"13.02","percent_visits_covid":"0.99","percent_visits_influenza":"11.68","percent_visits_rsv":"0.44","week_end":"2022-10-29"}
8
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"13.51","percent_visits_covid":"1.05","percent_visits_influenza":"12.29","percent_visits_rsv":"0.29","week_end":"2022-11-05"}
9
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"10.15","percent_visits_covid":"0.97","percent_visits_influenza":"8.94","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
10
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.38","percent_visits_covid":"0.98","percent_visits_influenza":"6.15","percent_visits_rsv":"0.31","week_end":"2022-11-19"}
11
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.86","percent_visits_covid":"1.45","percent_visits_influenza":"7.19","percent_visits_rsv":"0.35","week_end":"2022-11-26"}
12
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.06","percent_visits_covid":"2.14","percent_visits_influenza":"4.69","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
13
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.52","percent_visits_covid":"2.35","percent_visits_influenza":"3.03","percent_visits_rsv":"0.21","week_end":"2022-12-10"}
14
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.19","percent_visits_covid":"2.77","percent_visits_influenza":"2.19","percent_visits_rsv":"0.3","week_end":"2022-12-17"}
15
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.56","percent_visits_covid":"3.59","percent_visits_influenza":"1.8","percent_visits_rsv":"0.27","week_end":"2022-12-24"}
16
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.71","percent_visits_covid":"4.82","percent_visits_influenza":"1.78","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
17
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.44","percent_visits_covid":"4.2","percent_visits_influenza":"1.16","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
18
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.04","percent_visits_covid":"3.27","percent_visits_influenza":"0.72","percent_visits_rsv":"0.11","week_end":"2023-01-14"}
19
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.67","percent_visits_covid":"2.95","percent_visits_influenza":"0.65","percent_visits_rsv":"0.1","week_end":"2023-01-21"}
20
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.6","percent_visits_covid":"2.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
21
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.31","percent_visits_covid":"2.82","percent_visits_influenza":"0.43","percent_visits_rsv":"0.09","week_end":"2023-02-04"}
22
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.23","percent_visits_covid":"2.64","percent_visits_influenza":"0.53","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
23
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.86","percent_visits_covid":"2.32","percent_visits_influenza":"0.53","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
24
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.28","percent_visits_covid":"1.79","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-02-25"}
25
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.69","percent_visits_covid":"1.33","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-04"}
26
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.29","percent_visits_covid":"0.96","percent_visits_influenza":"0.28","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
27
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.26","percent_visits_covid":"0.88","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
28
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.46","percent_visits_covid":"1.06","percent_visits_influenza":"0.37","percent_visits_rsv":"0.04","week_end":"2023-03-25"}
29
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.23","percent_visits_covid":"0.91","percent_visits_influenza":"0.3","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
30
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.16","percent_visits_covid":"0.82","percent_visits_influenza":"0.33","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
31
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.0","percent_visits_covid":"0.69","percent_visits_influenza":"0.3","percent_visits_rsv":"0.03","week_end":"2023-04-15"}
32
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
33
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.02","percent_visits_covid":"0.66","percent_visits_influenza":"0.34","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
34
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.95","percent_visits_covid":"0.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
35
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.85","percent_visits_covid":"0.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
36
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.85","percent_visits_covid":"0.57","percent_visits_influenza":"0.25","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
37
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.79","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
38
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.86","percent_visits_covid":"0.57","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-03"}
39
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.69","percent_visits_covid":"0.46","percent_visits_influenza":"0.21","percent_visits_rsv":"0.02","week_end":"2023-06-10"}
40
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.69","percent_visits_covid":"0.45","percent_visits_influenza":"0.23","percent_visits_rsv":"0.02","week_end":"2023-06-17"}
41
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.7","percent_visits_covid":"0.48","percent_visits_influenza":"0.18","percent_visits_rsv":"0.05","week_end":"2023-06-24"}
42
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.67","percent_visits_covid":"0.53","percent_visits_influenza":"0.13","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
43
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.03","percent_visits_covid":"0.81","percent_visits_influenza":"0.2","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
44
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.1","percent_visits_covid":"0.91","percent_visits_influenza":"0.15","percent_visits_rsv":"0.04","week_end":"2023-07-15"}
45
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.42","percent_visits_covid":"1.22","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-07-22"}
46
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.84","percent_visits_covid":"1.62","percent_visits_influenza":"0.22","percent_visits_rsv":"0.01","week_end":"2023-07-29"}
47
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.4","percent_visits_covid":"2.16","percent_visits_influenza":"0.23","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
48
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.28","percent_visits_rsv":"0.05","week_end":"2023-08-12"}
49
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.11","percent_visits_covid":"3.74","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
50
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.4","percent_visits_covid":"4.97","percent_visits_influenza":"0.43","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
51
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.82","percent_visits_covid":"4.32","percent_visits_influenza":"0.48","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
52
- ,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.0","percent_visits_covid":"3.51","percent_visits_influenza":"0.41","percent_visits_rsv":"0.1","week_end":"2023-09-09"}
53
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.08","percent_visits_covid":"2.61","percent_visits_influenza":"0.38","percent_visits_rsv":"0.13","week_end":"2023-09-16"}
54
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.36","percent_visits_covid":"1.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.2","week_end":"2023-09-23"}
55
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.5","percent_visits_covid":"1.16","percent_visits_influenza":"0.72","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
56
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.97","percent_visits_covid":"1.17","percent_visits_influenza":"1.06","percent_visits_rsv":"0.77","week_end":"2023-10-21"}
57
- ,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.32","percent_visits_covid":"1.13","percent_visits_influenza":"1.38","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
58
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.09","percent_visits_covid":"1.1","percent_visits_influenza":"1.95","percent_visits_rsv":"1.09","week_end":"2023-11-04"}
59
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.92","percent_visits_covid":"1.26","percent_visits_influenza":"3.39","percent_visits_rsv":"1.36","week_end":"2023-11-11"}
60
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.35","percent_visits_covid":"1.16","percent_visits_influenza":"3.82","percent_visits_rsv":"1.46","week_end":"2023-11-18"}
61
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.05","percent_visits_covid":"1.27","percent_visits_influenza":"4.22","percent_visits_rsv":"1.66","week_end":"2023-11-25"}
62
- ,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.67","percent_visits_covid":"1.21","percent_visits_influenza":"3.44","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
63
- ,{"county":"Autauga","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"4.05","percent_visits_covid":"0.86","percent_visits_influenza":"2.38","percent_visits_rsv":"0.89","week_end":"2022-10-01"}
64
- ,{"county":"Autauga","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"5.21","percent_visits_covid":"0.72","percent_visits_influenza":"3.82","percent_visits_rsv":"0.72","week_end":"2022-10-08"}
65
- ,{"county":"Autauga","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"7.21","percent_visits_covid":"0.88","percent_visits_influenza":"5.69","percent_visits_rsv":"0.72","week_end":"2022-10-15"}
66
- ,{"county":"Autauga","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"9.57","percent_visits_covid":"0.55","percent_visits_influenza":"8.64","percent_visits_rsv":"0.48","week_end":"2022-10-22"}
67
- ,{"county":"Autauga","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"14.95","percent_visits_covid":"0.75","percent_visits_influenza":"14.12","percent_visits_rsv":"0.22","week_end":"2022-10-29"}
68
- ,{"county":"Autauga","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"13.0","percent_visits_covid":"0.84","percent_visits_influenza":"12.06","percent_visits_rsv":"0.2","week_end":"2022-11-05"}
69
- ,{"county":"Autauga","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"10.17","percent_visits_covid":"1.05","percent_visits_influenza":"8.91","percent_visits_rsv":"0.32","week_end":"2022-11-12"}
70
- ,{"county":"Autauga","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"7.29","percent_visits_covid":"0.84","percent_visits_influenza":"6.31","percent_visits_rsv":"0.16","week_end":"2022-11-19"}
71
- ,{"county":"Autauga","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alabama","hsa":"Montgomery (Montgomery), AL - Autauga, AL","hsa_counties":"Autauga, Bullock, Covington, Crenshaw, Lowndes, Montgomery, Pike","percent_visits_combined":"8.19","percent_visits_covid":"1.48","percent_visits_influenza":"6.43","percent_visits_rsv":"0.32","week_end":"2022-11-26"}
72
- ]