@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,2224 +0,0 @@
1
- {
2
- "dashboard": {
3
- "theme": "theme-blue",
4
- "sharedFilters": [
5
- {
6
- "key": "State",
7
- "type": "urlfilter",
8
- "datasetKey": "http://localhost:8080/examples/filters/California.json",
9
- "filterBy": "File Name",
10
- "fileName": "${query}",
11
- "apiFilter": {
12
- "apiEndpoint": "http://localhost:8080/examples/filters/States.json",
13
- "valueSelector": "geography",
14
- "textSelector": "geography",
15
- "defaultValue": "California"
16
- },
17
- "tier": 1,
18
- "active": "Colorado"
19
- },
20
- {
21
- "key": "County",
22
- "type": "datafilter",
23
- "datasetKey": "http://localhost:8080/examples/filters/California.json",
24
- "parents": "State",
25
- "tier": 2,
26
- "columnName": "county",
27
- "usedBy": [
28
- "chart1703177915838"
29
- ],
30
- "showDropdown": true
31
- }
32
- ]
33
- },
34
- "rows": [
35
- [
36
- {
37
- "width": 12,
38
- "widget": "chart1703177915838"
39
- },
40
- {},
41
- {}
42
- ]
43
- ],
44
- "visualizations": {
45
- "chart1703177915838": {
46
- "type": "chart",
47
- "debugSvg": false,
48
- "chartMessage": {
49
- "noData": "No Data Available"
50
- },
51
- "title": "",
52
- "showTitle": true,
53
- "showDownloadMediaButton": false,
54
- "theme": "theme-blue",
55
- "animate": false,
56
- "fontSize": "medium",
57
- "lineDatapointStyle": "hover",
58
- "lineDatapointColor": "Same as Line",
59
- "barHasBorder": "false",
60
- "isLollipopChart": false,
61
- "lollipopShape": "circle",
62
- "lollipopColorStyle": "two-tone",
63
- "visualizationSubType": "regular",
64
- "barStyle": "",
65
- "roundingStyle": "standard",
66
- "tipRounding": "top",
67
- "isResponsiveTicks": false,
68
- "general": {
69
- "showDownloadButton": false
70
- },
71
- "padding": {
72
- "left": 5,
73
- "right": 5
74
- },
75
- "suppressedData": [],
76
- "yAxis": {
77
- "hideAxis": false,
78
- "displayNumbersOnBar": false,
79
- "hideLabel": false,
80
- "hideTicks": false,
81
- "size": 50,
82
- "gridLines": false,
83
- "enablePadding": false,
84
- "min": "",
85
- "max": "",
86
- "labelColor": "#333",
87
- "tickLabelColor": "#333",
88
- "tickColor": "#333",
89
- "rightHideAxis": true,
90
- "rightAxisSize": 0,
91
- "rightLabel": "",
92
- "rightLabelOffsetSize": 0,
93
- "rightAxisLabelColor": "#333",
94
- "rightAxisTickLabelColor": "#333",
95
- "rightAxisTickColor": "#333",
96
- "numTicks": "",
97
- "axisPadding": 0,
98
- "tickRotation": 0,
99
- "anchors": []
100
- },
101
- "boxplot": {
102
- "plots": [],
103
- "borders": "true",
104
- "firstQuartilePercentage": 25,
105
- "thirdQuartilePercentage": 75,
106
- "boxWidthPercentage": 40,
107
- "plotOutlierValues": false,
108
- "plotNonOutlierValues": true,
109
- "legend": {
110
- "showHowToReadText": false,
111
- "howToReadText": ""
112
- },
113
- "labels": {
114
- "q1": "Lower Quartile",
115
- "q2": "q2",
116
- "q3": "Upper Quartile",
117
- "q4": "q4",
118
- "minimum": "Minimum",
119
- "maximum": "Maximum",
120
- "mean": "Mean",
121
- "median": "Median",
122
- "sd": "Standard Deviation",
123
- "iqr": "Interquartile Range",
124
- "total": "Total",
125
- "outliers": "Outliers",
126
- "values": "Values",
127
- "lowerBounds": "Lower Bounds",
128
- "upperBounds": "Upper Bounds"
129
- }
130
- },
131
- "topAxis": {
132
- "hasLine": false
133
- },
134
- "isLegendValue": false,
135
- "barThickness": 0.35,
136
- "barHeight": 25,
137
- "barSpace": 15,
138
- "heights": {
139
- "vertical": 300,
140
- "horizontal": 750
141
- },
142
- "xAxis": {
143
- "sortDates": false,
144
- "anchors": [],
145
- "type": "date",
146
- "showTargetLabel": true,
147
- "targetLabel": "Target",
148
- "hideAxis": false,
149
- "hideLabel": false,
150
- "hideTicks": false,
151
- "size": 75,
152
- "tickRotation": 0,
153
- "min": "",
154
- "max": "",
155
- "labelColor": "#333",
156
- "tickLabelColor": "#333",
157
- "tickColor": "#333",
158
- "numTicks": "",
159
- "labelOffset": 65,
160
- "axisPadding": 0,
161
- "target": 0,
162
- "maxTickRotation": 0,
163
- "dataKey": "week_end",
164
- "dateParseFormat": "%Y-%m-%d",
165
- "dateDisplayFormat": "%Y-%m-%d",
166
- "tickWidthMax": 93
167
- },
168
- "table": {
169
- "label": "Data Table",
170
- "expanded": true,
171
- "limitHeight": false,
172
- "height": "",
173
- "caption": "",
174
- "showDownloadUrl": false,
175
- "showDataTableLink": true,
176
- "indexLabel": "",
177
- "download": false,
178
- "showVertical": true,
179
- "show": false
180
- },
181
- "orientation": "vertical",
182
- "color": "pinkpurple",
183
- "columns": {},
184
- "legend": {
185
- "hide": false,
186
- "behavior": "isolate",
187
- "singleRow": false,
188
- "colorCode": "",
189
- "reverseLabelOrder": false,
190
- "description": "",
191
- "dynamicLegend": false,
192
- "dynamicLegendDefaultText": "Show All",
193
- "dynamicLegendItemLimit": 5,
194
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
195
- "dynamicLegendChartMessage": "Select Options from the Legend",
196
- "lineMode": false,
197
- "verticalSorted": false,
198
- "highlightOnHover": false
199
- },
200
- "brush": {
201
- "height": 25,
202
- "data": [
203
- {
204
- "county": "",
205
- "ed_trends_covid": "",
206
- "ed_trends_influenza": "",
207
- "ed_trends_rsv": "",
208
- "geography": "",
209
- "hsa": "",
210
- "hsa_counties": "",
211
- "percent_visits_combined": "0.0",
212
- "percent_visits_covid": "0.0",
213
- "percent_visits_influenza": "0.0",
214
- "percent_visits_rsv": "0.0",
215
- "week_end": "2022-10-01"
216
- },
217
- {
218
- "county": "",
219
- "ed_trends_covid": "",
220
- "ed_trends_influenza": "",
221
- "ed_trends_rsv": "",
222
- "geography": "",
223
- "hsa": "",
224
- "hsa_counties": "",
225
- "percent_visits_combined": "0.0",
226
- "percent_visits_covid": "0.0",
227
- "percent_visits_influenza": "0.0",
228
- "percent_visits_rsv": "0.0",
229
- "week_end": "2022-10-08"
230
- },
231
- {
232
- "county": "",
233
- "ed_trends_covid": "",
234
- "ed_trends_influenza": "",
235
- "ed_trends_rsv": "",
236
- "geography": "",
237
- "hsa": "",
238
- "hsa_counties": "",
239
- "percent_visits_combined": "0.0",
240
- "percent_visits_covid": "0.0",
241
- "percent_visits_influenza": "0.0",
242
- "percent_visits_rsv": "0.0",
243
- "week_end": "2022-10-15"
244
- },
245
- {
246
- "county": "",
247
- "ed_trends_covid": "",
248
- "ed_trends_influenza": "",
249
- "ed_trends_rsv": "",
250
- "geography": "",
251
- "hsa": "",
252
- "hsa_counties": "",
253
- "percent_visits_combined": "0.0",
254
- "percent_visits_covid": "0.0",
255
- "percent_visits_influenza": "0.0",
256
- "percent_visits_rsv": "0.0",
257
- "week_end": "2022-10-22"
258
- },
259
- {
260
- "county": "",
261
- "ed_trends_covid": "",
262
- "ed_trends_influenza": "",
263
- "ed_trends_rsv": "",
264
- "geography": "",
265
- "hsa": "",
266
- "hsa_counties": "",
267
- "percent_visits_combined": "0.0",
268
- "percent_visits_covid": "0.0",
269
- "percent_visits_influenza": "0.0",
270
- "percent_visits_rsv": "0.0",
271
- "week_end": "2022-10-29"
272
- },
273
- {
274
- "county": "",
275
- "ed_trends_covid": "",
276
- "ed_trends_influenza": "",
277
- "ed_trends_rsv": "",
278
- "geography": "",
279
- "hsa": "",
280
- "hsa_counties": "",
281
- "percent_visits_combined": "0.0",
282
- "percent_visits_covid": "0.0",
283
- "percent_visits_influenza": "0.0",
284
- "percent_visits_rsv": "0.0",
285
- "week_end": "2022-11-05"
286
- },
287
- {
288
- "county": "",
289
- "ed_trends_covid": "",
290
- "ed_trends_influenza": "",
291
- "ed_trends_rsv": "",
292
- "geography": "",
293
- "hsa": "",
294
- "hsa_counties": "",
295
- "percent_visits_combined": "0.0",
296
- "percent_visits_covid": "0.0",
297
- "percent_visits_influenza": "0.0",
298
- "percent_visits_rsv": "0.0",
299
- "week_end": "2022-11-12"
300
- },
301
- {
302
- "county": "",
303
- "ed_trends_covid": "",
304
- "ed_trends_influenza": "",
305
- "ed_trends_rsv": "",
306
- "geography": "",
307
- "hsa": "",
308
- "hsa_counties": "",
309
- "percent_visits_combined": "0.0",
310
- "percent_visits_covid": "0.0",
311
- "percent_visits_influenza": "0.0",
312
- "percent_visits_rsv": "0.0",
313
- "week_end": "2022-11-19"
314
- },
315
- {
316
- "county": "",
317
- "ed_trends_covid": "",
318
- "ed_trends_influenza": "",
319
- "ed_trends_rsv": "",
320
- "geography": "",
321
- "hsa": "",
322
- "hsa_counties": "",
323
- "percent_visits_combined": "0.0",
324
- "percent_visits_covid": "0.0",
325
- "percent_visits_influenza": "0.0",
326
- "percent_visits_rsv": "0.0",
327
- "week_end": "2022-11-26"
328
- },
329
- {
330
- "county": "",
331
- "ed_trends_covid": "",
332
- "ed_trends_influenza": "",
333
- "ed_trends_rsv": "",
334
- "geography": "",
335
- "hsa": "",
336
- "hsa_counties": "",
337
- "percent_visits_combined": "0.0",
338
- "percent_visits_covid": "0.0",
339
- "percent_visits_influenza": "0.0",
340
- "percent_visits_rsv": "0.0",
341
- "week_end": "2022-12-03"
342
- },
343
- {
344
- "county": "",
345
- "ed_trends_covid": "",
346
- "ed_trends_influenza": "",
347
- "ed_trends_rsv": "",
348
- "geography": "",
349
- "hsa": "",
350
- "hsa_counties": "",
351
- "percent_visits_combined": "11.06",
352
- "percent_visits_covid": "4.42",
353
- "percent_visits_influenza": "6.47",
354
- "percent_visits_rsv": "0.54",
355
- "week_end": "2022-12-10"
356
- },
357
- {
358
- "county": "",
359
- "ed_trends_covid": "",
360
- "ed_trends_influenza": "",
361
- "ed_trends_rsv": "",
362
- "geography": "",
363
- "hsa": "",
364
- "hsa_counties": "",
365
- "percent_visits_combined": "9.08",
366
- "percent_visits_covid": "3.98",
367
- "percent_visits_influenza": "4.85",
368
- "percent_visits_rsv": "0.41",
369
- "week_end": "2022-12-17"
370
- },
371
- {
372
- "county": "",
373
- "ed_trends_covid": "",
374
- "ed_trends_influenza": "",
375
- "ed_trends_rsv": "",
376
- "geography": "",
377
- "hsa": "",
378
- "hsa_counties": "",
379
- "percent_visits_combined": "9.67",
380
- "percent_visits_covid": "3.34",
381
- "percent_visits_influenza": "6.07",
382
- "percent_visits_rsv": "0.35",
383
- "week_end": "2022-12-24"
384
- },
385
- {
386
- "county": "",
387
- "ed_trends_covid": "",
388
- "ed_trends_influenza": "",
389
- "ed_trends_rsv": "",
390
- "geography": "",
391
- "hsa": "",
392
- "hsa_counties": "",
393
- "percent_visits_combined": "8.0",
394
- "percent_visits_covid": "4.35",
395
- "percent_visits_influenza": "3.51",
396
- "percent_visits_rsv": "0.29",
397
- "week_end": "2022-12-31"
398
- }
399
- ],
400
- "active": false
401
- },
402
- "exclusions": {
403
- "active": false,
404
- "keys": []
405
- },
406
- "palette": "qualitative-bold",
407
- "isPaletteReversed": false,
408
- "twoColor": {
409
- "palette": "monochrome-1",
410
- "isPaletteReversed": false
411
- },
412
- "labels": false,
413
- "dataFormat": {
414
- "commas": false,
415
- "prefix": "",
416
- "suffix": "",
417
- "abbreviated": false,
418
- "bottomSuffix": "",
419
- "bottomPrefix": "",
420
- "bottomAbbreviated": false
421
- },
422
- "confidenceKeys": {},
423
- "visual": {
424
- "border": true,
425
- "accent": true,
426
- "background": true,
427
- "verticalHoverLine": false,
428
- "horizontalHoverLine": false
429
- },
430
- "useLogScale": false,
431
- "filterBehavior": "Filter Change",
432
- "highlightedBarValues": [],
433
- "series": [
434
- {
435
- "dataKey": "percent_visits_covid",
436
- "type": "Bar",
437
- "axis": "Left",
438
- "tooltip": true
439
- }
440
- ],
441
- "tooltips": {
442
- "opacity": 90,
443
- "singleSeries": false
444
- },
445
- "forestPlot": {
446
- "startAt": 0,
447
- "colors": {
448
- "line": "",
449
- "shape": ""
450
- },
451
- "lineOfNoEffect": {
452
- "show": true
453
- },
454
- "type": "",
455
- "pooledResult": {
456
- "diamondHeight": 5,
457
- "column": ""
458
- },
459
- "estimateField": "",
460
- "estimateRadius": "",
461
- "shape": "",
462
- "rowHeight": 20,
463
- "description": {
464
- "show": true,
465
- "text": "description",
466
- "location": 0
467
- },
468
- "result": {
469
- "show": true,
470
- "text": "result",
471
- "location": 100
472
- },
473
- "radius": {
474
- "min": 1,
475
- "max": 8,
476
- "scalingColumn": ""
477
- },
478
- "regression": {
479
- "lower": 0,
480
- "upper": 0,
481
- "estimateField": 0
482
- },
483
- "leftWidthOffset": 0,
484
- "rightWidthOffset": 0,
485
- "showZeroLine": false,
486
- "hideDateCategoryCol": false,
487
- "leftLabel": "",
488
- "rightLabel": ""
489
- },
490
- "area": {
491
- "isStacked": false
492
- },
493
- "openModal": false,
494
- "uid": "chart1703177915838",
495
- "visualizationType": "Bar",
496
- "dataDescription": {
497
- "horizontal": false,
498
- "series": false
499
- },
500
- "dataKey": "http://localhost:8080/examples/filters/California.json",
501
- "editing": false,
502
- "validated": 4.23,
503
- "dynamicMarginTop": 0,
504
- "formattedData": [
505
- {
506
- "county": "Adams",
507
- "ed_trends_covid": "No Change",
508
- "ed_trends_influenza": "No Change",
509
- "ed_trends_rsv": "Increasing",
510
- "geography": "Colorado",
511
- "hsa": "Denver (Denver), CO - Jefferson, CO",
512
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
513
- "percent_visits_combined": "1.67",
514
- "percent_visits_covid": "1.4",
515
- "percent_visits_influenza": "0.11",
516
- "percent_visits_rsv": "0.17",
517
- "week_end": "2022-10-01"
518
- },
519
- {
520
- "county": "Adams",
521
- "ed_trends_covid": "Increasing",
522
- "ed_trends_influenza": "Increasing",
523
- "ed_trends_rsv": "Increasing",
524
- "geography": "Colorado",
525
- "hsa": "Denver (Denver), CO - Jefferson, CO",
526
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
527
- "percent_visits_combined": "1.78",
528
- "percent_visits_covid": "1.43",
529
- "percent_visits_influenza": "0.12",
530
- "percent_visits_rsv": "0.23",
531
- "week_end": "2022-10-08"
532
- },
533
- {
534
- "county": "Adams",
535
- "ed_trends_covid": "Increasing",
536
- "ed_trends_influenza": "Increasing",
537
- "ed_trends_rsv": "Increasing",
538
- "geography": "Colorado",
539
- "hsa": "Denver (Denver), CO - Jefferson, CO",
540
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
541
- "percent_visits_combined": "1.97",
542
- "percent_visits_covid": "1.45",
543
- "percent_visits_influenza": "0.15",
544
- "percent_visits_rsv": "0.38",
545
- "week_end": "2022-10-15"
546
- },
547
- {
548
- "county": "Adams",
549
- "ed_trends_covid": "Increasing",
550
- "ed_trends_influenza": "Increasing",
551
- "ed_trends_rsv": "Increasing",
552
- "geography": "Colorado",
553
- "hsa": "Denver (Denver), CO - Jefferson, CO",
554
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
555
- "percent_visits_combined": "2.58",
556
- "percent_visits_covid": "1.77",
557
- "percent_visits_influenza": "0.19",
558
- "percent_visits_rsv": "0.65",
559
- "week_end": "2022-10-22"
560
- },
561
- {
562
- "county": "Adams",
563
- "ed_trends_covid": "Increasing",
564
- "ed_trends_influenza": "Increasing",
565
- "ed_trends_rsv": "Increasing",
566
- "geography": "Colorado",
567
- "hsa": "Denver (Denver), CO - Jefferson, CO",
568
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
569
- "percent_visits_combined": "3.47",
570
- "percent_visits_covid": "2.04",
571
- "percent_visits_influenza": "0.51",
572
- "percent_visits_rsv": "0.94",
573
- "week_end": "2022-10-29"
574
- },
575
- {
576
- "county": "Adams",
577
- "ed_trends_covid": "Increasing",
578
- "ed_trends_influenza": "Increasing",
579
- "ed_trends_rsv": "Increasing",
580
- "geography": "Colorado",
581
- "hsa": "Denver (Denver), CO - Jefferson, CO",
582
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
583
- "percent_visits_combined": "5.04",
584
- "percent_visits_covid": "2.65",
585
- "percent_visits_influenza": "1.02",
586
- "percent_visits_rsv": "1.42",
587
- "week_end": "2022-11-05"
588
- },
589
- {
590
- "county": "Adams",
591
- "ed_trends_covid": "Increasing",
592
- "ed_trends_influenza": "Increasing",
593
- "ed_trends_rsv": "Increasing",
594
- "geography": "Colorado",
595
- "hsa": "Denver (Denver), CO - Jefferson, CO",
596
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
597
- "percent_visits_combined": "7.16",
598
- "percent_visits_covid": "3.03",
599
- "percent_visits_influenza": "1.95",
600
- "percent_visits_rsv": "2.29",
601
- "week_end": "2022-11-12"
602
- },
603
- {
604
- "county": "Adams",
605
- "ed_trends_covid": "Increasing",
606
- "ed_trends_influenza": "Increasing",
607
- "ed_trends_rsv": "Increasing",
608
- "geography": "Colorado",
609
- "hsa": "Denver (Denver), CO - Jefferson, CO",
610
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
611
- "percent_visits_combined": "9.35",
612
- "percent_visits_covid": "3.35",
613
- "percent_visits_influenza": "3.54",
614
- "percent_visits_rsv": "2.63",
615
- "week_end": "2022-11-19"
616
- },
617
- {
618
- "county": "Adams",
619
- "ed_trends_covid": "Decreasing",
620
- "ed_trends_influenza": "Increasing",
621
- "ed_trends_rsv": "Decreasing",
622
- "geography": "Colorado",
623
- "hsa": "Denver (Denver), CO - Jefferson, CO",
624
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
625
- "percent_visits_combined": "11.13",
626
- "percent_visits_covid": "3.68",
627
- "percent_visits_influenza": "5.32",
628
- "percent_visits_rsv": "2.39",
629
- "week_end": "2022-11-26"
630
- },
631
- {
632
- "county": "Adams",
633
- "ed_trends_covid": "Decreasing",
634
- "ed_trends_influenza": "Increasing",
635
- "ed_trends_rsv": "Decreasing",
636
- "geography": "Colorado",
637
- "hsa": "Denver (Denver), CO - Jefferson, CO",
638
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
639
- "percent_visits_combined": "10.71",
640
- "percent_visits_covid": "3.44",
641
- "percent_visits_influenza": "5.7",
642
- "percent_visits_rsv": "1.86",
643
- "week_end": "2022-12-03"
644
- },
645
- {
646
- "county": "Adams",
647
- "ed_trends_covid": "Decreasing",
648
- "ed_trends_influenza": "Decreasing",
649
- "ed_trends_rsv": "Decreasing",
650
- "geography": "Colorado",
651
- "hsa": "Denver (Denver), CO - Jefferson, CO",
652
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
653
- "percent_visits_combined": "9.27",
654
- "percent_visits_covid": "2.79",
655
- "percent_visits_influenza": "5.4",
656
- "percent_visits_rsv": "1.26",
657
- "week_end": "2022-12-10"
658
- },
659
- {
660
- "county": "Adams",
661
- "ed_trends_covid": "Decreasing",
662
- "ed_trends_influenza": "Decreasing",
663
- "ed_trends_rsv": "Decreasing",
664
- "geography": "Colorado",
665
- "hsa": "Denver (Denver), CO - Jefferson, CO",
666
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
667
- "percent_visits_combined": "8.66",
668
- "percent_visits_covid": "2.43",
669
- "percent_visits_influenza": "5.43",
670
- "percent_visits_rsv": "0.99",
671
- "week_end": "2022-12-17"
672
- },
673
- {
674
- "county": "Adams",
675
- "ed_trends_covid": "Decreasing",
676
- "ed_trends_influenza": "Decreasing",
677
- "ed_trends_rsv": "Decreasing",
678
- "geography": "Colorado",
679
- "hsa": "Denver (Denver), CO - Jefferson, CO",
680
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
681
- "percent_visits_combined": "8.05",
682
- "percent_visits_covid": "2.11",
683
- "percent_visits_influenza": "5.43",
684
- "percent_visits_rsv": "0.64",
685
- "week_end": "2022-12-24"
686
- },
687
- {
688
- "county": "Adams",
689
- "ed_trends_covid": "Decreasing",
690
- "ed_trends_influenza": "Decreasing",
691
- "ed_trends_rsv": "Decreasing",
692
- "geography": "Colorado",
693
- "hsa": "Denver (Denver), CO - Jefferson, CO",
694
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
695
- "percent_visits_combined": "6.66",
696
- "percent_visits_covid": "2.06",
697
- "percent_visits_influenza": "4.01",
698
- "percent_visits_rsv": "0.71",
699
- "week_end": "2022-12-31"
700
- },
701
- {
702
- "county": "Adams",
703
- "ed_trends_covid": "Decreasing",
704
- "ed_trends_influenza": "Decreasing",
705
- "ed_trends_rsv": "Decreasing",
706
- "geography": "Colorado",
707
- "hsa": "Denver (Denver), CO - Jefferson, CO",
708
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
709
- "percent_visits_combined": "4.4",
710
- "percent_visits_covid": "1.69",
711
- "percent_visits_influenza": "2.29",
712
- "percent_visits_rsv": "0.5",
713
- "week_end": "2023-01-07"
714
- },
715
- {
716
- "county": "Adams",
717
- "ed_trends_covid": "Decreasing",
718
- "ed_trends_influenza": "Decreasing",
719
- "ed_trends_rsv": "Decreasing",
720
- "geography": "Colorado",
721
- "hsa": "Denver (Denver), CO - Jefferson, CO",
722
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
723
- "percent_visits_combined": "2.48",
724
- "percent_visits_covid": "1.22",
725
- "percent_visits_influenza": "1.03",
726
- "percent_visits_rsv": "0.25",
727
- "week_end": "2023-01-14"
728
- },
729
- {
730
- "county": "Adams",
731
- "ed_trends_covid": "Decreasing",
732
- "ed_trends_influenza": "Decreasing",
733
- "ed_trends_rsv": "Decreasing",
734
- "geography": "Colorado",
735
- "hsa": "Denver (Denver), CO - Jefferson, CO",
736
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
737
- "percent_visits_combined": "2.32",
738
- "percent_visits_covid": "1.41",
739
- "percent_visits_influenza": "0.68",
740
- "percent_visits_rsv": "0.25",
741
- "week_end": "2023-01-21"
742
- },
743
- {
744
- "county": "Adams",
745
- "ed_trends_covid": "Increasing",
746
- "ed_trends_influenza": "Decreasing",
747
- "ed_trends_rsv": "Decreasing",
748
- "geography": "Colorado",
749
- "hsa": "Denver (Denver), CO - Jefferson, CO",
750
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
751
- "percent_visits_combined": "2.01",
752
- "percent_visits_covid": "1.27",
753
- "percent_visits_influenza": "0.49",
754
- "percent_visits_rsv": "0.26",
755
- "week_end": "2023-01-28"
756
- },
757
- {
758
- "county": "Adams",
759
- "ed_trends_covid": "Increasing",
760
- "ed_trends_influenza": "Decreasing",
761
- "ed_trends_rsv": "Decreasing",
762
- "geography": "Colorado",
763
- "hsa": "Denver (Denver), CO - Jefferson, CO",
764
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
765
- "percent_visits_combined": "2.21",
766
- "percent_visits_covid": "1.57",
767
- "percent_visits_influenza": "0.47",
768
- "percent_visits_rsv": "0.19",
769
- "week_end": "2023-02-04"
770
- },
771
- {
772
- "county": "Adams",
773
- "ed_trends_covid": "Increasing",
774
- "ed_trends_influenza": "No Change",
775
- "ed_trends_rsv": "Decreasing",
776
- "geography": "Colorado",
777
- "hsa": "Denver (Denver), CO - Jefferson, CO",
778
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
779
- "percent_visits_combined": "2.29",
780
- "percent_visits_covid": "1.84",
781
- "percent_visits_influenza": "0.29",
782
- "percent_visits_rsv": "0.18",
783
- "week_end": "2023-02-11"
784
- },
785
- {
786
- "county": "Adams",
787
- "ed_trends_covid": "Increasing",
788
- "ed_trends_influenza": "No Change",
789
- "ed_trends_rsv": "Decreasing",
790
- "geography": "Colorado",
791
- "hsa": "Denver (Denver), CO - Jefferson, CO",
792
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
793
- "percent_visits_combined": "2.31",
794
- "percent_visits_covid": "1.94",
795
- "percent_visits_influenza": "0.25",
796
- "percent_visits_rsv": "0.13",
797
- "week_end": "2023-02-18"
798
- },
799
- {
800
- "county": "Adams",
801
- "ed_trends_covid": "Decreasing",
802
- "ed_trends_influenza": "Decreasing",
803
- "ed_trends_rsv": "Decreasing",
804
- "geography": "Colorado",
805
- "hsa": "Denver (Denver), CO - Jefferson, CO",
806
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
807
- "percent_visits_combined": "2.39",
808
- "percent_visits_covid": "2.05",
809
- "percent_visits_influenza": "0.28",
810
- "percent_visits_rsv": "0.08",
811
- "week_end": "2023-02-25"
812
- },
813
- {
814
- "county": "Adams",
815
- "ed_trends_covid": "Decreasing",
816
- "ed_trends_influenza": "Decreasing",
817
- "ed_trends_rsv": "Decreasing",
818
- "geography": "Colorado",
819
- "hsa": "Denver (Denver), CO - Jefferson, CO",
820
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
821
- "percent_visits_combined": "2.09",
822
- "percent_visits_covid": "1.77",
823
- "percent_visits_influenza": "0.26",
824
- "percent_visits_rsv": "0.07",
825
- "week_end": "2023-03-04"
826
- },
827
- {
828
- "county": "Adams",
829
- "ed_trends_covid": "Decreasing",
830
- "ed_trends_influenza": "Decreasing",
831
- "ed_trends_rsv": "Decreasing",
832
- "geography": "Colorado",
833
- "hsa": "Denver (Denver), CO - Jefferson, CO",
834
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
835
- "percent_visits_combined": "1.81",
836
- "percent_visits_covid": "1.54",
837
- "percent_visits_influenza": "0.2",
838
- "percent_visits_rsv": "0.07",
839
- "week_end": "2023-03-11"
840
- },
841
- {
842
- "county": "Adams",
843
- "ed_trends_covid": "Decreasing",
844
- "ed_trends_influenza": "No Change",
845
- "ed_trends_rsv": "Decreasing",
846
- "geography": "Colorado",
847
- "hsa": "Denver (Denver), CO - Jefferson, CO",
848
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
849
- "percent_visits_combined": "1.53",
850
- "percent_visits_covid": "1.28",
851
- "percent_visits_influenza": "0.22",
852
- "percent_visits_rsv": "0.04",
853
- "week_end": "2023-03-18"
854
- },
855
- {
856
- "county": "Adams",
857
- "ed_trends_covid": "Decreasing",
858
- "ed_trends_influenza": "No Change",
859
- "ed_trends_rsv": "No Change",
860
- "geography": "Colorado",
861
- "hsa": "Denver (Denver), CO - Jefferson, CO",
862
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
863
- "percent_visits_combined": "1.55",
864
- "percent_visits_covid": "1.33",
865
- "percent_visits_influenza": "0.16",
866
- "percent_visits_rsv": "0.06",
867
- "week_end": "2023-03-25"
868
- },
869
- {
870
- "county": "Adams",
871
- "ed_trends_covid": "Decreasing",
872
- "ed_trends_influenza": "No Change",
873
- "ed_trends_rsv": "Decreasing",
874
- "geography": "Colorado",
875
- "hsa": "Denver (Denver), CO - Jefferson, CO",
876
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
877
- "percent_visits_combined": "1.5",
878
- "percent_visits_covid": "1.29",
879
- "percent_visits_influenza": "0.18",
880
- "percent_visits_rsv": "0.04",
881
- "week_end": "2023-04-01"
882
- },
883
- {
884
- "county": "Adams",
885
- "ed_trends_covid": "Decreasing",
886
- "ed_trends_influenza": "No Change",
887
- "ed_trends_rsv": "Decreasing",
888
- "geography": "Colorado",
889
- "hsa": "Denver (Denver), CO - Jefferson, CO",
890
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
891
- "percent_visits_combined": "1.31",
892
- "percent_visits_covid": "1.12",
893
- "percent_visits_influenza": "0.15",
894
- "percent_visits_rsv": "0.04",
895
- "week_end": "2023-04-08"
896
- },
897
- {
898
- "county": "Adams",
899
- "ed_trends_covid": "Decreasing",
900
- "ed_trends_influenza": "No Change",
901
- "ed_trends_rsv": "Decreasing",
902
- "geography": "Colorado",
903
- "hsa": "Denver (Denver), CO - Jefferson, CO",
904
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
905
- "percent_visits_combined": "1.21",
906
- "percent_visits_covid": "0.95",
907
- "percent_visits_influenza": "0.23",
908
- "percent_visits_rsv": "0.03",
909
- "week_end": "2023-04-15"
910
- },
911
- {
912
- "county": "Adams",
913
- "ed_trends_covid": "Decreasing",
914
- "ed_trends_influenza": "No Change",
915
- "ed_trends_rsv": "Decreasing",
916
- "geography": "Colorado",
917
- "hsa": "Denver (Denver), CO - Jefferson, CO",
918
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
919
- "percent_visits_combined": "0.97",
920
- "percent_visits_covid": "0.77",
921
- "percent_visits_influenza": "0.19",
922
- "percent_visits_rsv": "0.02",
923
- "week_end": "2023-04-22"
924
- },
925
- {
926
- "county": "Adams",
927
- "ed_trends_covid": "Decreasing",
928
- "ed_trends_influenza": "No Change",
929
- "ed_trends_rsv": "No Change",
930
- "geography": "Colorado",
931
- "hsa": "Denver (Denver), CO - Jefferson, CO",
932
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
933
- "percent_visits_combined": "0.83",
934
- "percent_visits_covid": "0.67",
935
- "percent_visits_influenza": "0.15",
936
- "percent_visits_rsv": "0.02",
937
- "week_end": "2023-04-29"
938
- },
939
- {
940
- "county": "Adams",
941
- "ed_trends_covid": "Decreasing",
942
- "ed_trends_influenza": "No Change",
943
- "ed_trends_rsv": "No Change",
944
- "geography": "Colorado",
945
- "hsa": "Denver (Denver), CO - Jefferson, CO",
946
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
947
- "percent_visits_combined": "0.84",
948
- "percent_visits_covid": "0.68",
949
- "percent_visits_influenza": "0.15",
950
- "percent_visits_rsv": "0.02",
951
- "week_end": "2023-05-06"
952
- },
953
- {
954
- "county": "Adams",
955
- "ed_trends_covid": "Decreasing",
956
- "ed_trends_influenza": "No Change",
957
- "ed_trends_rsv": "No Change",
958
- "geography": "Colorado",
959
- "hsa": "Denver (Denver), CO - Jefferson, CO",
960
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
961
- "percent_visits_combined": "0.84",
962
- "percent_visits_covid": "0.59",
963
- "percent_visits_influenza": "0.23",
964
- "percent_visits_rsv": "0.03",
965
- "week_end": "2023-05-13"
966
- },
967
- {
968
- "county": "Adams",
969
- "ed_trends_covid": "Decreasing",
970
- "ed_trends_influenza": "Decreasing",
971
- "ed_trends_rsv": "Decreasing",
972
- "geography": "Colorado",
973
- "hsa": "Denver (Denver), CO - Jefferson, CO",
974
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
975
- "percent_visits_combined": "0.79",
976
- "percent_visits_covid": "0.58",
977
- "percent_visits_influenza": "0.2",
978
- "percent_visits_rsv": "0.01",
979
- "week_end": "2023-05-20"
980
- },
981
- {
982
- "county": "Adams",
983
- "ed_trends_covid": "Decreasing",
984
- "ed_trends_influenza": "Decreasing",
985
- "ed_trends_rsv": "Decreasing",
986
- "geography": "Colorado",
987
- "hsa": "Denver (Denver), CO - Jefferson, CO",
988
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
989
- "percent_visits_combined": "0.73",
990
- "percent_visits_covid": "0.63",
991
- "percent_visits_influenza": "0.09",
992
- "percent_visits_rsv": "0.02",
993
- "week_end": "2023-05-27"
994
- },
995
- {
996
- "county": "Adams",
997
- "ed_trends_covid": "Decreasing",
998
- "ed_trends_influenza": "Decreasing",
999
- "ed_trends_rsv": "Decreasing",
1000
- "geography": "Colorado",
1001
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1002
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1003
- "percent_visits_combined": "0.47",
1004
- "percent_visits_covid": "0.35",
1005
- "percent_visits_influenza": "0.12",
1006
- "percent_visits_rsv": "0.0",
1007
- "week_end": "2023-06-03"
1008
- },
1009
- {
1010
- "county": "Adams",
1011
- "ed_trends_covid": "Decreasing",
1012
- "ed_trends_influenza": "Decreasing",
1013
- "ed_trends_rsv": "Decreasing",
1014
- "geography": "Colorado",
1015
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1016
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1017
- "percent_visits_combined": "0.5",
1018
- "percent_visits_covid": "0.37",
1019
- "percent_visits_influenza": "0.12",
1020
- "percent_visits_rsv": "0.0",
1021
- "week_end": "2023-06-10"
1022
- },
1023
- {
1024
- "county": "Adams",
1025
- "ed_trends_covid": "No Change",
1026
- "ed_trends_influenza": "No Change",
1027
- "ed_trends_rsv": "No Change",
1028
- "geography": "Colorado",
1029
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1030
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1031
- "percent_visits_combined": "0.5",
1032
- "percent_visits_covid": "0.42",
1033
- "percent_visits_influenza": "0.07",
1034
- "percent_visits_rsv": "0.0",
1035
- "week_end": "2023-06-17"
1036
- },
1037
- {
1038
- "county": "Adams",
1039
- "ed_trends_covid": "No Change",
1040
- "ed_trends_influenza": "No Change",
1041
- "ed_trends_rsv": "No Change",
1042
- "geography": "Colorado",
1043
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1044
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1045
- "percent_visits_combined": "0.48",
1046
- "percent_visits_covid": "0.4",
1047
- "percent_visits_influenza": "0.08",
1048
- "percent_visits_rsv": "0.0",
1049
- "week_end": "2023-06-24"
1050
- },
1051
- {
1052
- "county": "Adams",
1053
- "ed_trends_covid": "No Change",
1054
- "ed_trends_influenza": "No Change",
1055
- "ed_trends_rsv": "No Change",
1056
- "geography": "Colorado",
1057
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1058
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1059
- "percent_visits_combined": "0.49",
1060
- "percent_visits_covid": "0.45",
1061
- "percent_visits_influenza": "0.05",
1062
- "percent_visits_rsv": "0.0",
1063
- "week_end": "2023-07-01"
1064
- },
1065
- {
1066
- "county": "Adams",
1067
- "ed_trends_covid": "No Change",
1068
- "ed_trends_influenza": "No Change",
1069
- "ed_trends_rsv": "No Change",
1070
- "geography": "Colorado",
1071
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1072
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1073
- "percent_visits_combined": "0.53",
1074
- "percent_visits_covid": "0.43",
1075
- "percent_visits_influenza": "0.09",
1076
- "percent_visits_rsv": "0.01",
1077
- "week_end": "2023-07-08"
1078
- },
1079
- {
1080
- "county": "Adams",
1081
- "ed_trends_covid": "Increasing",
1082
- "ed_trends_influenza": "No Change",
1083
- "ed_trends_rsv": "No Change",
1084
- "geography": "Colorado",
1085
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1086
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1087
- "percent_visits_combined": "0.54",
1088
- "percent_visits_covid": "0.47",
1089
- "percent_visits_influenza": "0.07",
1090
- "percent_visits_rsv": "0.0",
1091
- "week_end": "2023-07-15"
1092
- },
1093
- {
1094
- "county": "Adams",
1095
- "ed_trends_covid": "Increasing",
1096
- "ed_trends_influenza": "No Change",
1097
- "ed_trends_rsv": "No Change",
1098
- "geography": "Colorado",
1099
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1100
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1101
- "percent_visits_combined": "0.53",
1102
- "percent_visits_covid": "0.46",
1103
- "percent_visits_influenza": "0.07",
1104
- "percent_visits_rsv": "0.0",
1105
- "week_end": "2023-07-22"
1106
- },
1107
- {
1108
- "county": "Adams",
1109
- "ed_trends_covid": "Increasing",
1110
- "ed_trends_influenza": "No Change",
1111
- "ed_trends_rsv": "No Change",
1112
- "geography": "Colorado",
1113
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1114
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1115
- "percent_visits_combined": "0.66",
1116
- "percent_visits_covid": "0.59",
1117
- "percent_visits_influenza": "0.04",
1118
- "percent_visits_rsv": "0.03",
1119
- "week_end": "2023-07-29"
1120
- },
1121
- {
1122
- "county": "Adams",
1123
- "ed_trends_covid": "Increasing",
1124
- "ed_trends_influenza": "No Change",
1125
- "ed_trends_rsv": "No Change",
1126
- "geography": "Colorado",
1127
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1128
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1129
- "percent_visits_combined": "0.82",
1130
- "percent_visits_covid": "0.74",
1131
- "percent_visits_influenza": "0.09",
1132
- "percent_visits_rsv": "0.01",
1133
- "week_end": "2023-08-05"
1134
- },
1135
- {
1136
- "county": "Adams",
1137
- "ed_trends_covid": "Increasing",
1138
- "ed_trends_influenza": "Increasing",
1139
- "ed_trends_rsv": "No Change",
1140
- "geography": "Colorado",
1141
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1142
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1143
- "percent_visits_combined": "1.03",
1144
- "percent_visits_covid": "0.96",
1145
- "percent_visits_influenza": "0.06",
1146
- "percent_visits_rsv": "0.02",
1147
- "week_end": "2023-08-12"
1148
- },
1149
- {
1150
- "county": "Adams",
1151
- "ed_trends_covid": "Increasing",
1152
- "ed_trends_influenza": "No Change",
1153
- "ed_trends_rsv": "No Change",
1154
- "geography": "Colorado",
1155
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1156
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1157
- "percent_visits_combined": "1.2",
1158
- "percent_visits_covid": "1.1",
1159
- "percent_visits_influenza": "0.1",
1160
- "percent_visits_rsv": "0.01",
1161
- "week_end": "2023-08-19"
1162
- },
1163
- {
1164
- "county": "Adams",
1165
- "ed_trends_covid": "Increasing",
1166
- "ed_trends_influenza": "No Change",
1167
- "ed_trends_rsv": "No Change",
1168
- "geography": "Colorado",
1169
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1170
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1171
- "percent_visits_combined": "1.55",
1172
- "percent_visits_covid": "1.43",
1173
- "percent_visits_influenza": "0.12",
1174
- "percent_visits_rsv": "0.0",
1175
- "week_end": "2023-08-26"
1176
- },
1177
- {
1178
- "county": "Adams",
1179
- "ed_trends_covid": "Increasing",
1180
- "ed_trends_influenza": "No Change",
1181
- "ed_trends_rsv": "No Change",
1182
- "geography": "Colorado",
1183
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1184
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1185
- "percent_visits_combined": "1.74",
1186
- "percent_visits_covid": "1.65",
1187
- "percent_visits_influenza": "0.1",
1188
- "percent_visits_rsv": "0.01",
1189
- "week_end": "2023-09-02"
1190
- },
1191
- {
1192
- "county": "Adams",
1193
- "ed_trends_covid": "Increasing",
1194
- "ed_trends_influenza": "No Change",
1195
- "ed_trends_rsv": "Increasing",
1196
- "geography": "Colorado",
1197
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1198
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1199
- "percent_visits_combined": "1.88",
1200
- "percent_visits_covid": "1.75",
1201
- "percent_visits_influenza": "0.13",
1202
- "percent_visits_rsv": "0.01",
1203
- "week_end": "2023-09-09"
1204
- },
1205
- {
1206
- "county": "Adams",
1207
- "ed_trends_covid": "No Change",
1208
- "ed_trends_influenza": "No Change",
1209
- "ed_trends_rsv": "Increasing",
1210
- "geography": "Colorado",
1211
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1212
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1213
- "percent_visits_combined": "1.75",
1214
- "percent_visits_covid": "1.62",
1215
- "percent_visits_influenza": "0.09",
1216
- "percent_visits_rsv": "0.03",
1217
- "week_end": "2023-09-16"
1218
- },
1219
- {
1220
- "county": "Adams",
1221
- "ed_trends_covid": "Increasing",
1222
- "ed_trends_influenza": "Increasing",
1223
- "ed_trends_rsv": "Increasing",
1224
- "geography": "Colorado",
1225
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1226
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1227
- "percent_visits_combined": "1.96",
1228
- "percent_visits_covid": "1.83",
1229
- "percent_visits_influenza": "0.11",
1230
- "percent_visits_rsv": "0.02",
1231
- "week_end": "2023-09-23"
1232
- },
1233
- {
1234
- "county": "Adams",
1235
- "ed_trends_covid": "Increasing",
1236
- "ed_trends_influenza": "Increasing",
1237
- "ed_trends_rsv": "Increasing",
1238
- "geography": "Colorado",
1239
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1240
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1241
- "percent_visits_combined": "2.09",
1242
- "percent_visits_covid": "1.91",
1243
- "percent_visits_influenza": "0.16",
1244
- "percent_visits_rsv": "0.03",
1245
- "week_end": "2023-09-30"
1246
- },
1247
- {
1248
- "county": "Adams",
1249
- "ed_trends_covid": "Increasing",
1250
- "ed_trends_influenza": "Increasing",
1251
- "ed_trends_rsv": "Increasing",
1252
- "geography": "Colorado",
1253
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1254
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1255
- "percent_visits_combined": "2.26",
1256
- "percent_visits_covid": "1.98",
1257
- "percent_visits_influenza": "0.23",
1258
- "percent_visits_rsv": "0.06",
1259
- "week_end": "2023-10-07"
1260
- },
1261
- {
1262
- "county": "Adams",
1263
- "ed_trends_covid": "Increasing",
1264
- "ed_trends_influenza": "Increasing",
1265
- "ed_trends_rsv": "Increasing",
1266
- "geography": "Colorado",
1267
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1268
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1269
- "percent_visits_combined": "2.65",
1270
- "percent_visits_covid": "2.27",
1271
- "percent_visits_influenza": "0.33",
1272
- "percent_visits_rsv": "0.06",
1273
- "week_end": "2023-10-14"
1274
- },
1275
- {
1276
- "county": "Adams",
1277
- "ed_trends_covid": "Increasing",
1278
- "ed_trends_influenza": "Increasing",
1279
- "ed_trends_rsv": "Increasing",
1280
- "geography": "Colorado",
1281
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1282
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1283
- "percent_visits_combined": "3.02",
1284
- "percent_visits_covid": "2.44",
1285
- "percent_visits_influenza": "0.5",
1286
- "percent_visits_rsv": "0.09",
1287
- "week_end": "2023-10-21"
1288
- },
1289
- {
1290
- "county": "Adams",
1291
- "ed_trends_covid": "No Change",
1292
- "ed_trends_influenza": "Increasing",
1293
- "ed_trends_rsv": "Increasing",
1294
- "geography": "Colorado",
1295
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1296
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1297
- "percent_visits_combined": "2.95",
1298
- "percent_visits_covid": "2.3",
1299
- "percent_visits_influenza": "0.58",
1300
- "percent_visits_rsv": "0.09",
1301
- "week_end": "2023-10-28"
1302
- },
1303
- {
1304
- "county": "Adams",
1305
- "ed_trends_covid": "No Change",
1306
- "ed_trends_influenza": "Increasing",
1307
- "ed_trends_rsv": "Increasing",
1308
- "geography": "Colorado",
1309
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1310
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1311
- "percent_visits_combined": "3.33",
1312
- "percent_visits_covid": "2.38",
1313
- "percent_visits_influenza": "0.9",
1314
- "percent_visits_rsv": "0.07",
1315
- "week_end": "2023-11-04"
1316
- },
1317
- {
1318
- "county": "Adams",
1319
- "ed_trends_covid": "No Change",
1320
- "ed_trends_influenza": "Increasing",
1321
- "ed_trends_rsv": "Increasing",
1322
- "geography": "Colorado",
1323
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1324
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1325
- "percent_visits_combined": "3.88",
1326
- "percent_visits_covid": "2.25",
1327
- "percent_visits_influenza": "1.41",
1328
- "percent_visits_rsv": "0.26",
1329
- "week_end": "2023-11-11"
1330
- },
1331
- {
1332
- "county": "Adams",
1333
- "ed_trends_covid": "No Change",
1334
- "ed_trends_influenza": "Increasing",
1335
- "ed_trends_rsv": "Increasing",
1336
- "geography": "Colorado",
1337
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1338
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1339
- "percent_visits_combined": "4.52",
1340
- "percent_visits_covid": "2.35",
1341
- "percent_visits_influenza": "1.92",
1342
- "percent_visits_rsv": "0.29",
1343
- "week_end": "2023-11-18"
1344
- },
1345
- {
1346
- "county": "Adams",
1347
- "ed_trends_covid": "No Change",
1348
- "ed_trends_influenza": "Increasing",
1349
- "ed_trends_rsv": "Increasing",
1350
- "geography": "Colorado",
1351
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1352
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1353
- "percent_visits_combined": "5.36",
1354
- "percent_visits_covid": "2.36",
1355
- "percent_visits_influenza": "2.53",
1356
- "percent_visits_rsv": "0.56",
1357
- "week_end": "2023-11-25"
1358
- },
1359
- {
1360
- "county": "Adams",
1361
- "ed_trends_covid": "No Change",
1362
- "ed_trends_influenza": "Increasing",
1363
- "ed_trends_rsv": "Increasing",
1364
- "geography": "Colorado",
1365
- "hsa": "Denver (Denver), CO - Jefferson, CO",
1366
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
1367
- "percent_visits_combined": "5.59",
1368
- "percent_visits_covid": "2.46",
1369
- "percent_visits_influenza": "2.69",
1370
- "percent_visits_rsv": "0.51",
1371
- "week_end": "2023-12-02"
1372
- },
1373
- {
1374
- "county": "Alamosa",
1375
- "ed_trends_covid": "No Data",
1376
- "ed_trends_influenza": "No Data",
1377
- "ed_trends_rsv": "No Data",
1378
- "geography": "Colorado",
1379
- "hsa": "Alamosa, CO - Rio Grande, CO",
1380
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1381
- "percent_visits_combined": "0.0",
1382
- "percent_visits_covid": "0.0",
1383
- "percent_visits_influenza": "0.0",
1384
- "percent_visits_rsv": "0.0",
1385
- "week_end": "2022-10-01"
1386
- },
1387
- {
1388
- "county": "Alamosa",
1389
- "ed_trends_covid": "No Data",
1390
- "ed_trends_influenza": "No Data",
1391
- "ed_trends_rsv": "No Data",
1392
- "geography": "Colorado",
1393
- "hsa": "Alamosa, CO - Rio Grande, CO",
1394
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1395
- "percent_visits_combined": "0.0",
1396
- "percent_visits_covid": "0.0",
1397
- "percent_visits_influenza": "0.0",
1398
- "percent_visits_rsv": "0.0",
1399
- "week_end": "2022-10-08"
1400
- },
1401
- {
1402
- "county": "Alamosa",
1403
- "ed_trends_covid": "No Data",
1404
- "ed_trends_influenza": "No Data",
1405
- "ed_trends_rsv": "No Data",
1406
- "geography": "Colorado",
1407
- "hsa": "Alamosa, CO - Rio Grande, CO",
1408
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1409
- "percent_visits_combined": "0.0",
1410
- "percent_visits_covid": "0.0",
1411
- "percent_visits_influenza": "0.0",
1412
- "percent_visits_rsv": "0.0",
1413
- "week_end": "2022-10-15"
1414
- },
1415
- {
1416
- "county": "Alamosa",
1417
- "ed_trends_covid": "No Data",
1418
- "ed_trends_influenza": "No Data",
1419
- "ed_trends_rsv": "No Data",
1420
- "geography": "Colorado",
1421
- "hsa": "Alamosa, CO - Rio Grande, CO",
1422
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1423
- "percent_visits_combined": "0.0",
1424
- "percent_visits_covid": "0.0",
1425
- "percent_visits_influenza": "0.0",
1426
- "percent_visits_rsv": "0.0",
1427
- "week_end": "2022-10-22"
1428
- },
1429
- {
1430
- "county": "Alamosa",
1431
- "ed_trends_covid": "No Data",
1432
- "ed_trends_influenza": "No Data",
1433
- "ed_trends_rsv": "No Data",
1434
- "geography": "Colorado",
1435
- "hsa": "Alamosa, CO - Rio Grande, CO",
1436
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1437
- "percent_visits_combined": "0.0",
1438
- "percent_visits_covid": "0.0",
1439
- "percent_visits_influenza": "0.0",
1440
- "percent_visits_rsv": "0.0",
1441
- "week_end": "2022-10-29"
1442
- },
1443
- {
1444
- "county": "Alamosa",
1445
- "ed_trends_covid": "No Data",
1446
- "ed_trends_influenza": "No Data",
1447
- "ed_trends_rsv": "No Data",
1448
- "geography": "Colorado",
1449
- "hsa": "Alamosa, CO - Rio Grande, CO",
1450
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1451
- "percent_visits_combined": "0.0",
1452
- "percent_visits_covid": "0.0",
1453
- "percent_visits_influenza": "0.0",
1454
- "percent_visits_rsv": "0.0",
1455
- "week_end": "2022-11-05"
1456
- },
1457
- {
1458
- "county": "Alamosa",
1459
- "ed_trends_covid": "No Data",
1460
- "ed_trends_influenza": "No Data",
1461
- "ed_trends_rsv": "No Data",
1462
- "geography": "Colorado",
1463
- "hsa": "Alamosa, CO - Rio Grande, CO",
1464
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1465
- "percent_visits_combined": "0.0",
1466
- "percent_visits_covid": "0.0",
1467
- "percent_visits_influenza": "0.0",
1468
- "percent_visits_rsv": "0.0",
1469
- "week_end": "2022-11-12"
1470
- },
1471
- {
1472
- "county": "Alamosa",
1473
- "ed_trends_covid": "No Data",
1474
- "ed_trends_influenza": "No Data",
1475
- "ed_trends_rsv": "No Data",
1476
- "geography": "Colorado",
1477
- "hsa": "Alamosa, CO - Rio Grande, CO",
1478
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1479
- "percent_visits_combined": "0.0",
1480
- "percent_visits_covid": "0.0",
1481
- "percent_visits_influenza": "0.0",
1482
- "percent_visits_rsv": "0.0",
1483
- "week_end": "2022-11-19"
1484
- },
1485
- {
1486
- "county": "Alamosa",
1487
- "ed_trends_covid": "No Data",
1488
- "ed_trends_influenza": "No Data",
1489
- "ed_trends_rsv": "No Data",
1490
- "geography": "Colorado",
1491
- "hsa": "Alamosa, CO - Rio Grande, CO",
1492
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1493
- "percent_visits_combined": "0.0",
1494
- "percent_visits_covid": "0.0",
1495
- "percent_visits_influenza": "0.0",
1496
- "percent_visits_rsv": "0.0",
1497
- "week_end": "2022-11-26"
1498
- },
1499
- {
1500
- "county": "Alamosa",
1501
- "ed_trends_covid": "No Data",
1502
- "ed_trends_influenza": "No Data",
1503
- "ed_trends_rsv": "No Data",
1504
- "geography": "Colorado",
1505
- "hsa": "Alamosa, CO - Rio Grande, CO",
1506
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1507
- "percent_visits_combined": "0.0",
1508
- "percent_visits_covid": "0.0",
1509
- "percent_visits_influenza": "0.0",
1510
- "percent_visits_rsv": "0.0",
1511
- "week_end": "2022-12-03"
1512
- },
1513
- {
1514
- "county": "Alamosa",
1515
- "ed_trends_covid": "No Data",
1516
- "ed_trends_influenza": "No Data",
1517
- "ed_trends_rsv": "No Data",
1518
- "geography": "Colorado",
1519
- "hsa": "Alamosa, CO - Rio Grande, CO",
1520
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1521
- "percent_visits_combined": "0.0",
1522
- "percent_visits_covid": "0.0",
1523
- "percent_visits_influenza": "0.0",
1524
- "percent_visits_rsv": "0.0",
1525
- "week_end": "2022-12-10"
1526
- },
1527
- {
1528
- "county": "Alamosa",
1529
- "ed_trends_covid": "No Data",
1530
- "ed_trends_influenza": "No Data",
1531
- "ed_trends_rsv": "No Data",
1532
- "geography": "Colorado",
1533
- "hsa": "Alamosa, CO - Rio Grande, CO",
1534
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1535
- "percent_visits_combined": "0.0",
1536
- "percent_visits_covid": "0.0",
1537
- "percent_visits_influenza": "0.0",
1538
- "percent_visits_rsv": "0.0",
1539
- "week_end": "2022-12-17"
1540
- },
1541
- {
1542
- "county": "Alamosa",
1543
- "ed_trends_covid": "No Data",
1544
- "ed_trends_influenza": "No Data",
1545
- "ed_trends_rsv": "No Data",
1546
- "geography": "Colorado",
1547
- "hsa": "Alamosa, CO - Rio Grande, CO",
1548
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1549
- "percent_visits_combined": "0.0",
1550
- "percent_visits_covid": "0.0",
1551
- "percent_visits_influenza": "0.0",
1552
- "percent_visits_rsv": "0.0",
1553
- "week_end": "2022-12-24"
1554
- },
1555
- {
1556
- "county": "Alamosa",
1557
- "ed_trends_covid": "No Data",
1558
- "ed_trends_influenza": "No Data",
1559
- "ed_trends_rsv": "No Data",
1560
- "geography": "Colorado",
1561
- "hsa": "Alamosa, CO - Rio Grande, CO",
1562
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1563
- "percent_visits_combined": "0.0",
1564
- "percent_visits_covid": "0.0",
1565
- "percent_visits_influenza": "0.0",
1566
- "percent_visits_rsv": "0.0",
1567
- "week_end": "2022-12-31"
1568
- },
1569
- {
1570
- "county": "Alamosa",
1571
- "ed_trends_covid": "No Data",
1572
- "ed_trends_influenza": "No Data",
1573
- "ed_trends_rsv": "No Data",
1574
- "geography": "Colorado",
1575
- "hsa": "Alamosa, CO - Rio Grande, CO",
1576
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1577
- "percent_visits_combined": "0.0",
1578
- "percent_visits_covid": "0.0",
1579
- "percent_visits_influenza": "0.0",
1580
- "percent_visits_rsv": "0.0",
1581
- "week_end": "2023-01-07"
1582
- },
1583
- {
1584
- "county": "Alamosa",
1585
- "ed_trends_covid": "No Data",
1586
- "ed_trends_influenza": "No Data",
1587
- "ed_trends_rsv": "No Data",
1588
- "geography": "Colorado",
1589
- "hsa": "Alamosa, CO - Rio Grande, CO",
1590
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1591
- "percent_visits_combined": "0.0",
1592
- "percent_visits_covid": "0.0",
1593
- "percent_visits_influenza": "0.0",
1594
- "percent_visits_rsv": "0.0",
1595
- "week_end": "2023-01-14"
1596
- },
1597
- {
1598
- "county": "Alamosa",
1599
- "ed_trends_covid": "No Data",
1600
- "ed_trends_influenza": "No Data",
1601
- "ed_trends_rsv": "No Data",
1602
- "geography": "Colorado",
1603
- "hsa": "Alamosa, CO - Rio Grande, CO",
1604
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1605
- "percent_visits_combined": "0.0",
1606
- "percent_visits_covid": "0.0",
1607
- "percent_visits_influenza": "0.0",
1608
- "percent_visits_rsv": "0.0",
1609
- "week_end": "2023-01-21"
1610
- },
1611
- {
1612
- "county": "Alamosa",
1613
- "ed_trends_covid": "No Data",
1614
- "ed_trends_influenza": "No Data",
1615
- "ed_trends_rsv": "No Data",
1616
- "geography": "Colorado",
1617
- "hsa": "Alamosa, CO - Rio Grande, CO",
1618
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1619
- "percent_visits_combined": "0.0",
1620
- "percent_visits_covid": "0.0",
1621
- "percent_visits_influenza": "0.0",
1622
- "percent_visits_rsv": "0.0",
1623
- "week_end": "2023-01-28"
1624
- },
1625
- {
1626
- "county": "Alamosa",
1627
- "ed_trends_covid": "No Data",
1628
- "ed_trends_influenza": "No Data",
1629
- "ed_trends_rsv": "No Data",
1630
- "geography": "Colorado",
1631
- "hsa": "Alamosa, CO - Rio Grande, CO",
1632
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1633
- "percent_visits_combined": "0.0",
1634
- "percent_visits_covid": "0.0",
1635
- "percent_visits_influenza": "0.0",
1636
- "percent_visits_rsv": "0.0",
1637
- "week_end": "2023-02-04"
1638
- },
1639
- {
1640
- "county": "Alamosa",
1641
- "ed_trends_covid": "No Data",
1642
- "ed_trends_influenza": "No Data",
1643
- "ed_trends_rsv": "No Data",
1644
- "geography": "Colorado",
1645
- "hsa": "Alamosa, CO - Rio Grande, CO",
1646
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1647
- "percent_visits_combined": "0.0",
1648
- "percent_visits_covid": "0.0",
1649
- "percent_visits_influenza": "0.0",
1650
- "percent_visits_rsv": "0.0",
1651
- "week_end": "2023-02-11"
1652
- },
1653
- {
1654
- "county": "Alamosa",
1655
- "ed_trends_covid": "No Data",
1656
- "ed_trends_influenza": "No Data",
1657
- "ed_trends_rsv": "No Data",
1658
- "geography": "Colorado",
1659
- "hsa": "Alamosa, CO - Rio Grande, CO",
1660
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1661
- "percent_visits_combined": "0.0",
1662
- "percent_visits_covid": "0.0",
1663
- "percent_visits_influenza": "0.0",
1664
- "percent_visits_rsv": "0.0",
1665
- "week_end": "2023-02-18"
1666
- },
1667
- {
1668
- "county": "Alamosa",
1669
- "ed_trends_covid": "No Data",
1670
- "ed_trends_influenza": "No Data",
1671
- "ed_trends_rsv": "No Data",
1672
- "geography": "Colorado",
1673
- "hsa": "Alamosa, CO - Rio Grande, CO",
1674
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1675
- "percent_visits_combined": "0.0",
1676
- "percent_visits_covid": "0.0",
1677
- "percent_visits_influenza": "0.0",
1678
- "percent_visits_rsv": "0.0",
1679
- "week_end": "2023-02-25"
1680
- },
1681
- {
1682
- "county": "Alamosa",
1683
- "ed_trends_covid": "No Data",
1684
- "ed_trends_influenza": "No Data",
1685
- "ed_trends_rsv": "No Data",
1686
- "geography": "Colorado",
1687
- "hsa": "Alamosa, CO - Rio Grande, CO",
1688
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1689
- "percent_visits_combined": "0.0",
1690
- "percent_visits_covid": "0.0",
1691
- "percent_visits_influenza": "0.0",
1692
- "percent_visits_rsv": "0.0",
1693
- "week_end": "2023-03-04"
1694
- },
1695
- {
1696
- "county": "Alamosa",
1697
- "ed_trends_covid": "No Data",
1698
- "ed_trends_influenza": "No Data",
1699
- "ed_trends_rsv": "No Data",
1700
- "geography": "Colorado",
1701
- "hsa": "Alamosa, CO - Rio Grande, CO",
1702
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1703
- "percent_visits_combined": "0.0",
1704
- "percent_visits_covid": "0.0",
1705
- "percent_visits_influenza": "0.0",
1706
- "percent_visits_rsv": "0.0",
1707
- "week_end": "2023-03-11"
1708
- },
1709
- {
1710
- "county": "Alamosa",
1711
- "ed_trends_covid": "No Data",
1712
- "ed_trends_influenza": "No Data",
1713
- "ed_trends_rsv": "No Data",
1714
- "geography": "Colorado",
1715
- "hsa": "Alamosa, CO - Rio Grande, CO",
1716
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1717
- "percent_visits_combined": "0.0",
1718
- "percent_visits_covid": "0.0",
1719
- "percent_visits_influenza": "0.0",
1720
- "percent_visits_rsv": "0.0",
1721
- "week_end": "2023-03-18"
1722
- },
1723
- {
1724
- "county": "Alamosa",
1725
- "ed_trends_covid": "No Data",
1726
- "ed_trends_influenza": "No Data",
1727
- "ed_trends_rsv": "No Data",
1728
- "geography": "Colorado",
1729
- "hsa": "Alamosa, CO - Rio Grande, CO",
1730
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1731
- "percent_visits_combined": "0.0",
1732
- "percent_visits_covid": "0.0",
1733
- "percent_visits_influenza": "0.0",
1734
- "percent_visits_rsv": "0.0",
1735
- "week_end": "2023-03-25"
1736
- },
1737
- {
1738
- "county": "Alamosa",
1739
- "ed_trends_covid": "No Data",
1740
- "ed_trends_influenza": "No Data",
1741
- "ed_trends_rsv": "No Data",
1742
- "geography": "Colorado",
1743
- "hsa": "Alamosa, CO - Rio Grande, CO",
1744
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1745
- "percent_visits_combined": "0.0",
1746
- "percent_visits_covid": "0.0",
1747
- "percent_visits_influenza": "0.0",
1748
- "percent_visits_rsv": "0.0",
1749
- "week_end": "2023-04-01"
1750
- },
1751
- {
1752
- "county": "Alamosa",
1753
- "ed_trends_covid": "No Data",
1754
- "ed_trends_influenza": "No Data",
1755
- "ed_trends_rsv": "No Data",
1756
- "geography": "Colorado",
1757
- "hsa": "Alamosa, CO - Rio Grande, CO",
1758
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1759
- "percent_visits_combined": "0.0",
1760
- "percent_visits_covid": "0.0",
1761
- "percent_visits_influenza": "0.0",
1762
- "percent_visits_rsv": "0.0",
1763
- "week_end": "2023-04-08"
1764
- },
1765
- {
1766
- "county": "Alamosa",
1767
- "ed_trends_covid": "No Data",
1768
- "ed_trends_influenza": "No Data",
1769
- "ed_trends_rsv": "No Data",
1770
- "geography": "Colorado",
1771
- "hsa": "Alamosa, CO - Rio Grande, CO",
1772
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1773
- "percent_visits_combined": "0.0",
1774
- "percent_visits_covid": "0.0",
1775
- "percent_visits_influenza": "0.0",
1776
- "percent_visits_rsv": "0.0",
1777
- "week_end": "2023-04-15"
1778
- },
1779
- {
1780
- "county": "Alamosa",
1781
- "ed_trends_covid": "No Data",
1782
- "ed_trends_influenza": "No Data",
1783
- "ed_trends_rsv": "No Data",
1784
- "geography": "Colorado",
1785
- "hsa": "Alamosa, CO - Rio Grande, CO",
1786
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1787
- "percent_visits_combined": "0.0",
1788
- "percent_visits_covid": "0.0",
1789
- "percent_visits_influenza": "0.0",
1790
- "percent_visits_rsv": "0.0",
1791
- "week_end": "2023-04-22"
1792
- },
1793
- {
1794
- "county": "Alamosa",
1795
- "ed_trends_covid": "No Data",
1796
- "ed_trends_influenza": "No Data",
1797
- "ed_trends_rsv": "No Data",
1798
- "geography": "Colorado",
1799
- "hsa": "Alamosa, CO - Rio Grande, CO",
1800
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1801
- "percent_visits_combined": "0.0",
1802
- "percent_visits_covid": "0.0",
1803
- "percent_visits_influenza": "0.0",
1804
- "percent_visits_rsv": "0.0",
1805
- "week_end": "2023-04-29"
1806
- },
1807
- {
1808
- "county": "Alamosa",
1809
- "ed_trends_covid": "No Data",
1810
- "ed_trends_influenza": "No Data",
1811
- "ed_trends_rsv": "No Data",
1812
- "geography": "Colorado",
1813
- "hsa": "Alamosa, CO - Rio Grande, CO",
1814
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1815
- "percent_visits_combined": "0.0",
1816
- "percent_visits_covid": "0.0",
1817
- "percent_visits_influenza": "0.0",
1818
- "percent_visits_rsv": "0.0",
1819
- "week_end": "2023-05-06"
1820
- },
1821
- {
1822
- "county": "Alamosa",
1823
- "ed_trends_covid": "No Data",
1824
- "ed_trends_influenza": "No Data",
1825
- "ed_trends_rsv": "No Data",
1826
- "geography": "Colorado",
1827
- "hsa": "Alamosa, CO - Rio Grande, CO",
1828
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1829
- "percent_visits_combined": "0.0",
1830
- "percent_visits_covid": "0.0",
1831
- "percent_visits_influenza": "0.0",
1832
- "percent_visits_rsv": "0.0",
1833
- "week_end": "2023-05-13"
1834
- },
1835
- {
1836
- "county": "Alamosa",
1837
- "ed_trends_covid": "No Data",
1838
- "ed_trends_influenza": "No Data",
1839
- "ed_trends_rsv": "No Data",
1840
- "geography": "Colorado",
1841
- "hsa": "Alamosa, CO - Rio Grande, CO",
1842
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1843
- "percent_visits_combined": "0.0",
1844
- "percent_visits_covid": "0.0",
1845
- "percent_visits_influenza": "0.0",
1846
- "percent_visits_rsv": "0.0",
1847
- "week_end": "2023-05-20"
1848
- },
1849
- {
1850
- "county": "All",
1851
- "ed_trends_covid": "Decreasing",
1852
- "ed_trends_influenza": "Decreasing",
1853
- "ed_trends_rsv": "Decreasing",
1854
- "geography": "Colorado",
1855
- "hsa": "All",
1856
- "hsa_counties": "All",
1857
- "percent_visits_combined": "2.63",
1858
- "percent_visits_covid": "1.2",
1859
- "percent_visits_influenza": "1.15",
1860
- "percent_visits_rsv": "0.32",
1861
- "week_end": "2023-01-14"
1862
- },
1863
- {
1864
- "county": "Alamosa",
1865
- "ed_trends_covid": "No Data",
1866
- "ed_trends_influenza": "No Data",
1867
- "ed_trends_rsv": "No Data",
1868
- "geography": "Colorado",
1869
- "hsa": "Alamosa, CO - Rio Grande, CO",
1870
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1871
- "percent_visits_combined": "0.0",
1872
- "percent_visits_covid": "0.0",
1873
- "percent_visits_influenza": "0.0",
1874
- "percent_visits_rsv": "0.0",
1875
- "week_end": "2023-05-27"
1876
- },
1877
- {
1878
- "county": "Alamosa",
1879
- "ed_trends_covid": "No Data",
1880
- "ed_trends_influenza": "No Data",
1881
- "ed_trends_rsv": "No Data",
1882
- "geography": "Colorado",
1883
- "hsa": "Alamosa, CO - Rio Grande, CO",
1884
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1885
- "percent_visits_combined": "0.0",
1886
- "percent_visits_covid": "0.0",
1887
- "percent_visits_influenza": "0.0",
1888
- "percent_visits_rsv": "0.0",
1889
- "week_end": "2023-06-03"
1890
- },
1891
- {
1892
- "county": "Alamosa",
1893
- "ed_trends_covid": "No Data",
1894
- "ed_trends_influenza": "No Data",
1895
- "ed_trends_rsv": "No Data",
1896
- "geography": "Colorado",
1897
- "hsa": "Alamosa, CO - Rio Grande, CO",
1898
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1899
- "percent_visits_combined": "0.0",
1900
- "percent_visits_covid": "0.0",
1901
- "percent_visits_influenza": "0.0",
1902
- "percent_visits_rsv": "0.0",
1903
- "week_end": "2023-06-10"
1904
- },
1905
- {
1906
- "county": "Alamosa",
1907
- "ed_trends_covid": "No Data",
1908
- "ed_trends_influenza": "No Data",
1909
- "ed_trends_rsv": "No Data",
1910
- "geography": "Colorado",
1911
- "hsa": "Alamosa, CO - Rio Grande, CO",
1912
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1913
- "percent_visits_combined": "0.0",
1914
- "percent_visits_covid": "0.0",
1915
- "percent_visits_influenza": "0.0",
1916
- "percent_visits_rsv": "0.0",
1917
- "week_end": "2023-06-17"
1918
- },
1919
- {
1920
- "county": "Alamosa",
1921
- "ed_trends_covid": "No Data",
1922
- "ed_trends_influenza": "No Data",
1923
- "ed_trends_rsv": "No Data",
1924
- "geography": "Colorado",
1925
- "hsa": "Alamosa, CO - Rio Grande, CO",
1926
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1927
- "percent_visits_combined": "0.0",
1928
- "percent_visits_covid": "0.0",
1929
- "percent_visits_influenza": "0.0",
1930
- "percent_visits_rsv": "0.0",
1931
- "week_end": "2023-06-24"
1932
- },
1933
- {
1934
- "county": "Alamosa",
1935
- "ed_trends_covid": "No Data",
1936
- "ed_trends_influenza": "No Data",
1937
- "ed_trends_rsv": "No Data",
1938
- "geography": "Colorado",
1939
- "hsa": "Alamosa, CO - Rio Grande, CO",
1940
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1941
- "percent_visits_combined": "0.0",
1942
- "percent_visits_covid": "0.0",
1943
- "percent_visits_influenza": "0.0",
1944
- "percent_visits_rsv": "0.0",
1945
- "week_end": "2023-07-01"
1946
- },
1947
- {
1948
- "county": "Alamosa",
1949
- "ed_trends_covid": "No Data",
1950
- "ed_trends_influenza": "No Data",
1951
- "ed_trends_rsv": "No Data",
1952
- "geography": "Colorado",
1953
- "hsa": "Alamosa, CO - Rio Grande, CO",
1954
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1955
- "percent_visits_combined": "0.0",
1956
- "percent_visits_covid": "0.0",
1957
- "percent_visits_influenza": "0.0",
1958
- "percent_visits_rsv": "0.0",
1959
- "week_end": "2023-07-08"
1960
- },
1961
- {
1962
- "county": "Alamosa",
1963
- "ed_trends_covid": "No Data",
1964
- "ed_trends_influenza": "No Data",
1965
- "ed_trends_rsv": "No Data",
1966
- "geography": "Colorado",
1967
- "hsa": "Alamosa, CO - Rio Grande, CO",
1968
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1969
- "percent_visits_combined": "0.0",
1970
- "percent_visits_covid": "0.0",
1971
- "percent_visits_influenza": "0.0",
1972
- "percent_visits_rsv": "0.0",
1973
- "week_end": "2023-07-15"
1974
- },
1975
- {
1976
- "county": "Alamosa",
1977
- "ed_trends_covid": "No Data",
1978
- "ed_trends_influenza": "No Data",
1979
- "ed_trends_rsv": "No Data",
1980
- "geography": "Colorado",
1981
- "hsa": "Alamosa, CO - Rio Grande, CO",
1982
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1983
- "percent_visits_combined": "0.0",
1984
- "percent_visits_covid": "0.0",
1985
- "percent_visits_influenza": "0.0",
1986
- "percent_visits_rsv": "0.0",
1987
- "week_end": "2023-07-22"
1988
- },
1989
- {
1990
- "county": "Alamosa",
1991
- "ed_trends_covid": "No Data",
1992
- "ed_trends_influenza": "No Data",
1993
- "ed_trends_rsv": "No Data",
1994
- "geography": "Colorado",
1995
- "hsa": "Alamosa, CO - Rio Grande, CO",
1996
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1997
- "percent_visits_combined": "0.0",
1998
- "percent_visits_covid": "0.0",
1999
- "percent_visits_influenza": "0.0",
2000
- "percent_visits_rsv": "0.0",
2001
- "week_end": "2023-07-29"
2002
- }
2003
- ]
2004
- }
2005
- },
2006
- "table": {
2007
- "label": "Data Table",
2008
- "show": true,
2009
- "showDownloadUrl": false,
2010
- "showVertical": true
2011
- },
2012
- "newViz": true,
2013
- "datasets": {
2014
- "http://localhost:8080/examples/filters/California.json": {
2015
- "dataFileSize": 6511,
2016
- "dataFileName": "http://localhost:8080/examples/filters/California.json",
2017
- "dataFileSourceType": "url",
2018
- "dataFileFormat": "JSON",
2019
- "preview": true,
2020
- "dataUrl": "http://localhost:8080/examples/filters/California.json",
2021
- "runtimeDataUrl": "http://localhost:8080/examples/filters/Colorado.json?geography=undefined",
2022
- "data": [
2023
- {
2024
- "county": "Alameda",
2025
- "ed_trends_covid": "No Change",
2026
- "ed_trends_influenza": "No Change",
2027
- "ed_trends_rsv": "No Change",
2028
- "geography": "California",
2029
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2030
- "hsa_counties": "Alameda, Contra Costa",
2031
- "percent_visits_combined": "0.0",
2032
- "percent_visits_covid": "0.0",
2033
- "percent_visits_influenza": "0.0",
2034
- "percent_visits_rsv": "0.0",
2035
- "week_end": "2022-10-01"
2036
- },
2037
- {
2038
- "county": "Alameda",
2039
- "ed_trends_covid": "No Change",
2040
- "ed_trends_influenza": "No Change",
2041
- "ed_trends_rsv": "No Change",
2042
- "geography": "California",
2043
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2044
- "hsa_counties": "Alameda, Contra Costa",
2045
- "percent_visits_combined": "0.0",
2046
- "percent_visits_covid": "0.0",
2047
- "percent_visits_influenza": "0.0",
2048
- "percent_visits_rsv": "0.0",
2049
- "week_end": "2022-10-08"
2050
- },
2051
- {
2052
- "county": "Alameda",
2053
- "ed_trends_covid": "No Change",
2054
- "ed_trends_influenza": "No Change",
2055
- "ed_trends_rsv": "No Change",
2056
- "geography": "California",
2057
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2058
- "hsa_counties": "Alameda, Contra Costa",
2059
- "percent_visits_combined": "0.0",
2060
- "percent_visits_covid": "0.0",
2061
- "percent_visits_influenza": "0.0",
2062
- "percent_visits_rsv": "0.0",
2063
- "week_end": "2022-10-15"
2064
- },
2065
- {
2066
- "county": "Alameda",
2067
- "ed_trends_covid": "No Change",
2068
- "ed_trends_influenza": "No Change",
2069
- "ed_trends_rsv": "No Change",
2070
- "geography": "California",
2071
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2072
- "hsa_counties": "Alameda, Contra Costa",
2073
- "percent_visits_combined": "0.0",
2074
- "percent_visits_covid": "0.0",
2075
- "percent_visits_influenza": "0.0",
2076
- "percent_visits_rsv": "0.0",
2077
- "week_end": "2022-10-22"
2078
- },
2079
- {
2080
- "county": "Alameda",
2081
- "ed_trends_covid": "No Change",
2082
- "ed_trends_influenza": "No Change",
2083
- "ed_trends_rsv": "No Change",
2084
- "geography": "California",
2085
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2086
- "hsa_counties": "Alameda, Contra Costa",
2087
- "percent_visits_combined": "0.0",
2088
- "percent_visits_covid": "0.0",
2089
- "percent_visits_influenza": "0.0",
2090
- "percent_visits_rsv": "0.0",
2091
- "week_end": "2022-10-29"
2092
- },
2093
- {
2094
- "county": "Alameda",
2095
- "ed_trends_covid": "No Change",
2096
- "ed_trends_influenza": "No Change",
2097
- "ed_trends_rsv": "No Change",
2098
- "geography": "California",
2099
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2100
- "hsa_counties": "Alameda, Contra Costa",
2101
- "percent_visits_combined": "0.0",
2102
- "percent_visits_covid": "0.0",
2103
- "percent_visits_influenza": "0.0",
2104
- "percent_visits_rsv": "0.0",
2105
- "week_end": "2022-11-05"
2106
- },
2107
- {
2108
- "county": "Alameda",
2109
- "ed_trends_covid": "No Change",
2110
- "ed_trends_influenza": "No Change",
2111
- "ed_trends_rsv": "No Change",
2112
- "geography": "California",
2113
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2114
- "hsa_counties": "Alameda, Contra Costa",
2115
- "percent_visits_combined": "0.0",
2116
- "percent_visits_covid": "0.0",
2117
- "percent_visits_influenza": "0.0",
2118
- "percent_visits_rsv": "0.0",
2119
- "week_end": "2022-11-12"
2120
- },
2121
- {
2122
- "county": "Alameda",
2123
- "ed_trends_covid": "No Change",
2124
- "ed_trends_influenza": "No Change",
2125
- "ed_trends_rsv": "No Change",
2126
- "geography": "California",
2127
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2128
- "hsa_counties": "Alameda, Contra Costa",
2129
- "percent_visits_combined": "0.0",
2130
- "percent_visits_covid": "0.0",
2131
- "percent_visits_influenza": "0.0",
2132
- "percent_visits_rsv": "0.0",
2133
- "week_end": "2022-11-19"
2134
- },
2135
- {
2136
- "county": "Alameda",
2137
- "ed_trends_covid": "No Change",
2138
- "ed_trends_influenza": "No Change",
2139
- "ed_trends_rsv": "No Change",
2140
- "geography": "California",
2141
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2142
- "hsa_counties": "Alameda, Contra Costa",
2143
- "percent_visits_combined": "0.0",
2144
- "percent_visits_covid": "0.0",
2145
- "percent_visits_influenza": "0.0",
2146
- "percent_visits_rsv": "0.0",
2147
- "week_end": "2022-11-26"
2148
- },
2149
- {
2150
- "county": "Alameda",
2151
- "ed_trends_covid": "No Change",
2152
- "ed_trends_influenza": "No Change",
2153
- "ed_trends_rsv": "No Change",
2154
- "geography": "California",
2155
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2156
- "hsa_counties": "Alameda, Contra Costa",
2157
- "percent_visits_combined": "0.0",
2158
- "percent_visits_covid": "0.0",
2159
- "percent_visits_influenza": "0.0",
2160
- "percent_visits_rsv": "0.0",
2161
- "week_end": "2022-12-03"
2162
- },
2163
- {
2164
- "county": "Alameda",
2165
- "ed_trends_covid": "No Change",
2166
- "ed_trends_influenza": "No Change",
2167
- "ed_trends_rsv": "No Change",
2168
- "geography": "California",
2169
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2170
- "hsa_counties": "Alameda, Contra Costa",
2171
- "percent_visits_combined": "11.06",
2172
- "percent_visits_covid": "4.42",
2173
- "percent_visits_influenza": "6.47",
2174
- "percent_visits_rsv": "0.54",
2175
- "week_end": "2022-12-10"
2176
- },
2177
- {
2178
- "county": "Alameda",
2179
- "ed_trends_covid": "No Change",
2180
- "ed_trends_influenza": "Decreasing",
2181
- "ed_trends_rsv": "No Change",
2182
- "geography": "California",
2183
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2184
- "hsa_counties": "Alameda, Contra Costa",
2185
- "percent_visits_combined": "9.08",
2186
- "percent_visits_covid": "3.98",
2187
- "percent_visits_influenza": "4.85",
2188
- "percent_visits_rsv": "0.41",
2189
- "week_end": "2022-12-17"
2190
- },
2191
- {
2192
- "county": "Alameda",
2193
- "ed_trends_covid": "Decreasing",
2194
- "ed_trends_influenza": "Decreasing",
2195
- "ed_trends_rsv": "Decreasing",
2196
- "geography": "California",
2197
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2198
- "hsa_counties": "Alameda, Contra Costa",
2199
- "percent_visits_combined": "9.67",
2200
- "percent_visits_covid": "3.34",
2201
- "percent_visits_influenza": "6.07",
2202
- "percent_visits_rsv": "0.35",
2203
- "week_end": "2022-12-24"
2204
- },
2205
- {
2206
- "county": "Alameda",
2207
- "ed_trends_covid": "Decreasing",
2208
- "ed_trends_influenza": "Decreasing",
2209
- "ed_trends_rsv": "Decreasing",
2210
- "geography": "California",
2211
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
2212
- "hsa_counties": "Alameda, Contra Costa",
2213
- "percent_visits_combined": "8.0",
2214
- "percent_visits_covid": "4.35",
2215
- "percent_visits_influenza": "3.51",
2216
- "percent_visits_rsv": "0.29",
2217
- "week_end": "2022-12-31"
2218
- }
2219
- ]
2220
- }
2221
- },
2222
- "type": "dashboard",
2223
- "runtime": {}
2224
- }